Clear Cache Shortcut

Quickly clear all your browser cache with a single click.

Τι είναι το Clear Cache Shortcut;

Το Clear Cache Shortcut είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Paul Yuan, και η κύρια λειτουργία του είναι "Quickly clear all your browser cache with a single click.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Clear Cache Shortcut

Λήψη αρχείων επέκτασης Clear Cache Shortcut σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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+.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Clear Cache Shortcut Clear Cache Shortcut
ID jnajhcakejgchhbjlchkfmdidgjefleg
Επίσημο URL https://chromewebstore.google.com/detail/clear-cache-shortcut/jnajhcakejgchhbjlchkfmdidgjefleg
Περιγραφή Quickly clear all your browser cache with a single click.
Μέγεθος Αρχείου 95.9 KB
Αριθμός Εγκαταστάσεων 144,994
Τρέχουσα Έκδοση 1.32
Τελευταία Ενημέρωση 2021-04-09
Ημερομηνία Δημοσίευσης 2013-01-20
Αξιολόγηση 4.39/5 Συνολικά 97 Αξιολογήσεις
Προγραμματιστής Paul Yuan
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://twitter.com/pyuan
Υποστηριζόμενες Γλώσσες 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"
    ]
}