Hard reload
Adds a hard reload button to chrome.
Wat is Hard reload?
Hard reload is een Chrome-extensie ontwikkeld door Spuffynism, en de belangrijkste functie is "Adds a hard reload button to chrome.".
Download het CRX-bestand van de extensie Hard reload
Download Hard reload-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | ![]() |
ID | bdmblpnglgiabhlbpkefgehelmlgodjd |
Officiële URL | https://chrome.google.com/webstore/detail/hard-reload/bdmblpnglgiabhlbpkefgehelmlgodjd |
Beschrijving | Adds a hard reload button to chrome. |
Bestandsgrootte | 4.05 KB |
Aantal Installaties | 383 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2018-05-26 |
Publicatiedatum | 2018-05-26 |
Beoordeling | 4.40/5 Totaal 5 Beoordelingen |
Ontwikkelaar | Spuffynism |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/Spuffynism/hardreload |
Ondersteunde Talen | 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 } |