Clear Cache Shortcut

Quickly clear all your browser cache with a single click.

Was ist Clear Cache Shortcut?

Clear Cache Shortcut ist eine Chrome-Erweiterung, die von Paul Yuan entwickelt wurde, und ihr Hauptmerkmal ist "Quickly clear all your browser cache with a single click.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Clear Cache Shortcut-Erweiterungs-CRX-Datei herunterladen

Laden Sie Clear Cache Shortcut-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

                        This is a simple extension that allows you to clear your cache with a single click of a button. You can either click the icon, or if you prefer, type in the browser address bar, "cache" => [hit the tab key] => "c" => [hit the enter key] to clear your cache. This extension uses the BrowsingData API which is supported by chrome versions 19+.                    

Grundlegende Informationen zur Erweiterung

Name Clear Cache Shortcut Clear Cache Shortcut
ID jnajhcakejgchhbjlchkfmdidgjefleg
Offizielle URL https://chromewebstore.google.com/detail/clear-cache-shortcut/jnajhcakejgchhbjlchkfmdidgjefleg
Beschreibung Quickly clear all your browser cache with a single click.
Dateigröße 95.9 KB
Installationsanzahl 144,994
Aktuelle Version 1.32
Letztes Update 2021-04-09
Veröffentlichungsdatum 2013-01-20
Bewertung 4.39/5 Insgesamt 97 Bewertungen
Entwickler Paul Yuan
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://twitter.com/pyuan
Unterstützte Sprachen en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clear Cache Shortcut",
    "version": "1.32",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "description": "Quickly clear all your browser cache with a single click.",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "browser_action": {
        "default_icon": "assets\/icon_done.png",
        "default_title": "Clear All Cache",
        "default_popup": "info.html"
    },
    "omnibox": {
        "keyword": "cache"
    },
    "background": {
        "scripts": [
            "assets\/jquery-1.9.0.min.js",
            "assets\/functions.js",
            "assets\/background.js"
        ]
    },
    "permissions": [
        "browsingData"
    ]
}