Hard reload
Adds a hard reload button to chrome.
What is Hard reload?
Hard reload is a Chrome extension developed by Spuffynism, and its main feature is "Adds a hard reload button to chrome.".
Download Hard reload Extension CRX File
Download Hard reload extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Hard reloads a page, bypassing/ignoring the cache. To hard reload the active tab's content, either click the button in the taskbar or press Alt+R. Source code can be found here: https://github.com/Spuffynism/hardreload
Extension Basic Information
Name | ![]() |
ID | bdmblpnglgiabhlbpkefgehelmlgodjd |
Official URL | https://chrome.google.com/webstore/detail/hard-reload/bdmblpnglgiabhlbpkefgehelmlgodjd |
Description | Adds a hard reload button to chrome. |
File Size | 4.05 KB |
Installation Count | 383 |
Current Version | 1.2 |
Last Updated | 2018-05-26 |
Publish Date | 2018-05-26 |
Rating | 4.40/5 Total 5 Ratings |
Developer | Spuffynism |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Spuffynism/hardreload |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hard reload", "description": "Adds a hard reload button to chrome.", "version": "1.2", "background": { "scripts": [ "background.js" ] }, "commands": { "hard-reload": { "suggested_key": { "default": "Alt+R", "mac": "Alt+R" }, "description": "Hard reloads" } }, "permissions": [ "activeTab", "browsingData" ], "browser_action": { "default_title": "Hard reload this page", "default_icon": "hard_reload.png" }, "manifest_version": 2 } |