Clear Cache Shortcut
Quickly clear all your browser cache with a single click.
Cos'è Clear Cache Shortcut?
Clear Cache Shortcut è un'estensione di Chrome sviluppata da Paul Yuan, e la sua funzione principale è "Quickly clear all your browser cache with a single click.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Clear Cache Shortcut
Scarica i file di estensione Clear Cache Shortcut 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
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+.
Informazioni di Base sull'Estensione
Nome | Clear Cache Shortcut |
ID | jnajhcakejgchhbjlchkfmdidgjefleg |
URL Ufficiale | https://chromewebstore.google.com/detail/clear-cache-shortcut/jnajhcakejgchhbjlchkfmdidgjefleg |
Descrizione | Quickly clear all your browser cache with a single click. |
Dimensione del File | 95.9 KB |
Conteggio Installazioni | 144,994 |
Versione Corrente | 1.32 |
Ultimo Aggiornamento | 2021-04-09 |
Data di Pubblicazione | 2013-01-20 |
Valutazione | 4.39/5 Totale 97 Valutazioni |
Sviluppatore | Paul Yuan |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://twitter.com/pyuan |
Lingue Supportate | 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" ] } |