Recenzije za Stop Auto Reload
Stop Auto Reload od kgersen
Odgovor od kgersen
Odgovor programera
objavljeno prije 4 godineWhen a page is reloaded, the tab activity indicator or throbber will appear on the tab (ping-ponging dots, hourglass, or spinning circle). When I set my computer date ahead by a day and select a Pinterest tab, new pictures will load, but there is no tab throbber. It looks like only part of the page is being refreshed. This extension can't stop something like that.
49 recenzija
- Ocijenjeno s 5 od 5od User, prije 2 mjesecaIt works very well, but not automatically !
It's necessary to do what the author explains in the presentation :
"URLs can be blacklisted through a tab's menu, right clicking the toolbar icon, or by selecting 'Options' for this extension.
A button badge with the letter 'S' will appear over the toolbar icon if the active tab is being stopped from auto reloading.
Left clicking the toolbar icon with a button badge will reload the current page." - Ocijenjeno s 1 od 5od Korisnik Firefoxa 19185659, prije 2 mjeseca
- Ocijenjeno s 1 od 5od Tentaurus, prije 3 mjesecaSorry, the only feature I need is: Stop Facebook from reloading!
That's exactly what doesn't work!
Crap! - Ocijenjeno s 3 od 5od Korisnik Firefoxa 13868997, prije 3 mjeseca
- Ocijenjeno s 2 od 5od Korwin, prije 4 mjesecaDoesn't work on http s://elcats.ru. Stop Auto Reload 1.6 (Nov 1, 2023), Mozilla Firefox 139.0 (64-bit), Microsoft Windows 10.0.19045.5854.
- Ocijenjeno s 1 od 5od Korisnik Firefoxa 13404543, prije 6 mjeseci
- Ocijenjeno s 1 od 5od Dennis L, prije 7 mjeseciTried this app on Facebook based on a few Google searches, guess what, did not work.
- Ocijenjeno s 1 od 5od Korisnik Firefoxa 14496199, prije 8 mjesecidoes not work with Facebook and it seems that the Dev does not attend to these reviews
- Ocijenjeno s 5 od 5od stepanx27, prije godinuWorks as desired. Press the right mouse button on the website and add the hostname to blacklist, then reload and you should see a red "S" symbol.
- Ocijenjeno s 1 od 5od Wyldfire, prije godinu
- Ocijenjeno s 5 od 5od dikunav, prije godinuExactly what I needed. When I was moving multiple internet market tabs they're all started to reload and that slowed browser. This extension stopped it.
- Ocijenjeno s 1 od 5od DubAgent, prije 2 godineI downloaded and installed to stop twitter from reloading. now none of my videos on twitter will play and the page continues to reload.
- Ocijenjeno s 1 od 5od Korisnik Firefoxa 12626933, prije 2 godineDoes not stop the meta tag http-equiv="refresh".
- Ocijenjeno s 5 od 5od Korisnik Firefoxa 14371892, prije 2 godineEver have a tab on Twitter/X pinned and come back to it later, only to have the whole page hard-refresh before you can read it again? This fixes that annoyance no problem. BTW I logged into my Firefox account for the first time in 5 years to leave this review, that is how happy I was that this annoyance was solved. THANK YOU for this plugin! 💯
- Ocijenjeno s 1 od 5od Korisnik Firefoxa 18082667, prije 2 godinedo not prevent reloading at https://wpolityce.pl/
- Ocijenjeno s 5 od 5od TheHumanist, prije 2 godine
- Ocijenjeno s 1 od 5od Korisnik Firefoxa 12516351, prije 2 godineDoesn't work on https://minsktrans.by/lookout_yard/Home/Index/minsk#/routes/bus/189%D1%8D/stops/56657/0
- Ocijenjeno s 5 od 5od th4, prije 3 godine
- Ocijenjeno s 5 od 5od Wirek, prije 3 godineIt works great on annoying filmweb.pl where settings/flags like:
accessibility.blockautorefresh true
browser.meta_refresh_when_inactive.disabled true
...in FF 107.0.1 (64-bit) didn't work.
Thank you very much! - Ocijenjeno s 5 od 5od Korisnik Firefoxa 17779295, prije 3 godine
- Ocijenjeno s 1 od 5od Korisnik Firefoxa 12370795, prije 3 godineNO use. Does NOT stop auto reloading.
- Ocijenjeno s 5 od 5od Korisnik Firefoxa 15352451, prije 3 godineWorks Nicely. I had one website that continued to reload after configuring about:config to stop reloads, this addon stopped it.
- Ocijenjeno s 4 od 5od Korisnik Firefoxa 16792125, prije 3 godineIt works perfect in every website except of this: https://www.capital.gr/ . When this website tries to reload , the addon works well and doesnt allow it , but in the same time scroll bar automaticaly , goes up on the top of the page ,and then i have to scroll down and search , in which point of the page i was reading before , which is annoying. Please fix it .Thank you.
Odgovor programera
objavljeno prije 3 godineTo keep the page from scrolling, you'll need to install an extension like FireMonkey or Violentmonkey (I only tested with these two). Then create a new script and save the following in it:
// ==UserScript==
// @name Capital disable scroll before reload
// @namespace https://www.capital.gr/
// @match https://www.capital.gr/
// @grant none
// @run-at document-end
// @version 1.0
// ==/UserScript==
const myScript = document.createElement('script');
myScript.textContent = 'gotoPositionAfterRefresh = function(elementID) {}';
document.body.appendChild(myScript);