Hard reload
Adds a hard reload button to chrome.
Qu'est-ce que Hard reload ?
Hard reload est une extension Chrome développée par Spuffynism, et sa fonction principale est "Adds a hard reload button to chrome.".
Télécharger le fichier CRX de l'extension Hard reload
Téléchargez les fichiers d'extension Hard reload au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | ![]() |
ID | bdmblpnglgiabhlbpkefgehelmlgodjd |
URL Officiel | https://chrome.google.com/webstore/detail/hard-reload/bdmblpnglgiabhlbpkefgehelmlgodjd |
Description | Adds a hard reload button to chrome. |
Taille du Fichier | 4.05 KB |
Nombre d'Installations | 383 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2018-05-26 |
Date de Publication | 2018-05-26 |
Évaluation | 4.40/5 Total 5 Évaluations |
Développeur | Spuffynism |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Spuffynism/hardreload |
Langues Prises en Charge | 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 } |