Chrome Page Refresh Shortcut Link
Cross-platform script:
These open the page with a changing parameter to avoid cached content.
A hard refresh forces Chrome to re-download all resources from the server, ignoring the local cache. This is essential when troubleshooting outdated CSS, JavaScript, or images.
| Platform | Shortcut |
|----------|----------|
| Windows / Linux | Ctrl + F5 or Ctrl + Shift + R |
| Mac | Cmd + Shift + R |
Note: A hard refresh does not clear the entire browser cache – only the resources for the current page. Use Chrome DevTools for full cache clearing.
Create a new bookmark as described above and paste this code: chrome page refresh shortcut link
javascript:var SECONDS=10;setInterval(function()location.reload();,SECONDS*1000);alert("Auto-refreshing every "+SECONDS+" seconds. Press F5 to stop.");
Change SECONDS=10 to any interval you need. Click this bookmark link on the page you want to refresh. It will keep refreshing until you navigate away or close the tab.
Option A: Normal Refresh via Bookmarklet
javascript:location.reload();
Clicking this link does the same as pressing F5.
Option B: Hard Refresh (Bypass Cache) via Bookmarklet
javascript:location.reload(true);
Note: location.reload(true) forces a reload from the server. This is the literal definition of a "refresh link." Cross-platform script:
Option C: Refresh All Tabs (Power User)
javascript:for(let i=0;i<chrome.tabs.length;i++)chrome.tabs.reload(i);
Save this as a bookmark. Now, clicking one link will refresh every open tab in your Chrome window. This is incredibly useful after a VPN connection drops or a proxy changes.
<a href="#" onclick="location.reload(); return false;">Refresh page</a>
<a href="#" onclick="document.getElementById('myframe').contentWindow.location.reload(); return false;">Refresh iframe</a>
You might be wondering: Why do people search for "chrome page refresh shortcut link" specifically?
The word "link" is critical. A standard refresh reloads the current document. However, if you have clicked a link that opens a new page, refreshing that new page is the same as above. But what about refreshing the destination of a hyperlink without clicking it?
Use Case: You are on a forum listing page (Page A) which contains a link to a specific post (Page B). The content of Page B changes every minute. You want to refresh Page B without leaving Page A. These open the page with a changing parameter
Solution: You cannot refresh a link's destination directly because a link is just text. You must:
This workflow is what advanced users mean by a "refresh link shortcut."
If a webpage contains multiple frames (rare in modern designs), you can refresh a single frame:
No direct keyboard shortcut.