Clear Cache Shortcut
Quickly clear all your browser cache with a single click.
Qu'est-ce que Clear Cache Shortcut ?
Clear Cache Shortcut est une extension Chrome développée par Paul Yuan, et sa fonction principale est "Quickly clear all your browser cache with a single click.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Clear Cache Shortcut
Téléchargez les fichiers d'extension Clear Cache Shortcut au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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+.
Informations de Base sur l'Extension
Nom | Clear Cache Shortcut |
ID | jnajhcakejgchhbjlchkfmdidgjefleg |
URL Officiel | https://chromewebstore.google.com/detail/clear-cache-shortcut/jnajhcakejgchhbjlchkfmdidgjefleg |
Description | Quickly clear all your browser cache with a single click. |
Taille du Fichier | 95.9 KB |
Nombre d'Installations | 144,994 |
Version Actuelle | 1.32 |
Dernière Mise à Jour | 2021-04-09 |
Date de Publication | 2013-01-20 |
Évaluation | 4.39/5 Total 97 Évaluations |
Développeur | Paul Yuan |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://twitter.com/pyuan |
Langues Prises en Charge | 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" ] } |