Clear Cache Shortcut

Quickly clear all your browser cache with a single click.

O que é Clear Cache Shortcut?

Clear Cache Shortcut é uma extensão do Chrome desenvolvida por Paul Yuan, e sua principal característica é "Quickly clear all your browser cache with a single click.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Clear Cache Shortcut

Baixe arquivos de extensão Clear Cache Shortcut no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Clear Cache Shortcut Clear Cache Shortcut
ID jnajhcakejgchhbjlchkfmdidgjefleg
URL Oficial https://chromewebstore.google.com/detail/clear-cache-shortcut/jnajhcakejgchhbjlchkfmdidgjefleg
Descrição Quickly clear all your browser cache with a single click.
Tamanho do Arquivo 95.9 KB
Contagem de Instalações 144,994
Versão Atual 1.32
Última Atualização 2021-04-09
Data de Publicação 2013-01-20
Classificação 4.39/5 Total de 97 Avaliações
Desenvolvedor Paul Yuan
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://twitter.com/pyuan
Idiomas Suportados 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"
    ]
}