views
- Install an extension called "Easy Auto Refresh" to set timers on tabs that refresh them automatically.
- You can also press Ctrl + Shift + I (Windows) or Cmd + Shift + I (Mac) to open the Chrome console and control other refresh rates with a script.
Using An Extension
Search for "Easy Auto Refresh" in the Chrome Web Store. You can also click here for the direct link to the extension. The extension is offered by dummysoftware.com and is a highly rated and popular extension. With Easy Auto Refresh, you can set all your pages or specific tabs to refresh as often as you want.
Click Add to Chrome in the top right corner. You'll see a box pop up that verifies the extension will be able to access your browser history.
Click Add Extension. Once the installation is complete, you will be redirected to a new page. You can close that page, as it's just information about the extension.
Click on the circular arrow icon next to the web address bar. This is the “Easy Auto Refresh” icon. If you don't see the icon immediately, click the puzzle piece, then click the Easy Auto Refresh icon. A timer will appear so you can set the time for the page to auto refresh.
Adjust the reloading time. In the large box, enter the time in seconds. If you want the page to reload every 30 seconds, enter 30. Click Advanced Options to see more options, such as reloading every tab open in the window.
Click Start. You can see the timer activate and start counting down until the next refresh. Easy Auto Refresh may become out-of-date or the target for hackers who want to introduce malware to the extension. If it gets poor ratings on the Chrome Web Store, you know to stay away from it. There are plenty of other extensions that offer auto-refresh, like "Auto Refresh Plus."
Using a Script
Open at least two Chrome tabs. You need to open a page that you want to keep reloading, then another tab to force the other to refresh. You can open a new tab in Chrome by pressing Ctrl + T (Windows) or Cmd + T (Mac).
Press Ctrl+⇧ Shift+I (Windows) or ⌘ Cmd+⇧ Shift+I. Make sure you have the "extra" tab active, not the tab that you want to refresh. This keyboard shortcut will open Chrome's control console.
Enter the following code: win1 = window.open("https://www.yourpage.com"); timer1 = setInterval(function(){win1.location.href="https://www.yourpage.com"},10*60*1000); win1 should be replaced with the info for the page that you want to reload. This code forces the window to auto refresh every 10 minutes. If you want to cancel the refresh, just close the console tab or both of them.
Comments
0 comment