What is Tab Reloader (page auto refresh)

The plugin provides a tab reloader with custom reloading times, variable reloading times, and the ability to define rules for tab reloading based on URL or hostname

It also offers features such as restoring reloading jobs after a restart, reloading tabs from the context menu, displaying remaining time for the next reloading, and running custom JavaScript code on each reload

Additionally, it supports session management and the ability to reload local files


Similar Web Traffic For https://webextension.org/listing/tab-reloader.html

9.2M
Last Month's Visits
23.0M
Last 3 Month's Visits
--
Last 6 Month's Visits

Total Visitors

Visits Over Time

9.2M

Top Countries

Top 5 Countries

Traffic Sources

Marketing Mix

100%


4.1

131 Ratings

Ron MosesRon Moses

There are pros and cons, but on balance I'm recommending it. On the downside, the interface is very unpolished compared to other refresh extensions. Functional, yes, but not a joy to use. Having the count of timed tabs on the icon is an interesting idea, but I really need to see a countdown on my tabs. I know I can click it, but this is pretty standard behavior in the category. I do like that it maintains my timers after a restart. That's key for me, and goes a long way towards forgiving al... Show more

MikeMike

i installed it, to prevent certain pages to auto-refresh, but didn't work at all. In fact i set the timer to 1 day for 3 pages, but all of them proceed to refresh as they normally would. Also too many options confuses the average user. It would be nicer to to put one-click options such as stop-auto refresh permantly. One-click options that are currently exists do not seem to function properly such as "do not reload if tab is active". I understand the effort to create such an open-source exten... Show more

John HollandJohn Holland

wonderful and exactly as advertised however it doesn't count the number of times it's reloaded the page. Here's a short script to do that: ```javascript let rs = parseInt(localStorage.getItem('reloadedCount')) let reloadCount = isNaN(rs) ? 0 : rs reloadCount++ localStorage.setItem("reloadedCount", reloadCount.toString()) console.log("reloaded " + reloadCount) ``` (omit ```, md just habit) to reset the count: localStorage.setItem("reloadedCount", 0)