Hard reload

Adds a hard reload button to chrome.

Cos'è Hard reload?

Hard reload è un'estensione di Chrome sviluppata da Spuffynism, e la sua funzione principale è "Adds a hard reload button to chrome.".

Scarica il file CRX dell'estensione Hard reload

Scarica i file di estensione Hard reload in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Hard reload Hard reload
ID bdmblpnglgiabhlbpkefgehelmlgodjd
URL Ufficiale https://chrome.google.com/webstore/detail/hard-reload/bdmblpnglgiabhlbpkefgehelmlgodjd
Descrizione Adds a hard reload button to chrome.
Dimensione del File 4.05 KB
Conteggio Installazioni 383
Versione Corrente 1.2
Ultimo Aggiornamento 2018-05-26
Data di Pubblicazione 2018-05-26
Valutazione 4.40/5 Totale 5 Valutazioni
Sviluppatore Spuffynism
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Spuffynism/hardreload
Lingue Supportate 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
}