Hard reload

Adds a hard reload button to chrome.

Was ist Hard reload?

Hard reload ist eine Chrome-Erweiterung, die von Spuffynism entwickelt wurde, und ihr Hauptmerkmal ist "Adds a hard reload button to chrome.".

Hard reload-Erweiterungs-CRX-Datei herunterladen

Laden Sie Hard reload-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Hard reload Hard reload
ID bdmblpnglgiabhlbpkefgehelmlgodjd
Offizielle URL https://chrome.google.com/webstore/detail/hard-reload/bdmblpnglgiabhlbpkefgehelmlgodjd
Beschreibung Adds a hard reload button to chrome.
Dateigröße 4.05 KB
Installationsanzahl 383
Aktuelle Version 1.2
Letztes Update 2018-05-26
Veröffentlichungsdatum 2018-05-26
Bewertung 4.40/5 Insgesamt 5 Bewertungen
Entwickler Spuffynism
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Spuffynism/hardreload
Unterstützte Sprachen 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
}