Cookie Cleaner

Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z

O que é Cookie Cleaner?

Cookie Cleaner é uma extensão do Chrome desenvolvida por https://arsho.github.io, e sua principal característica é "Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Cookie Cleaner

Baixe arquivos de extensão Cookie Cleaner 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

                        While developing web application we often face cookie related problems. One simple solution is to delete the existing cookies of your current tab and make a hard reload. Cookie cleaner will do this for you. It will remove all the cookies of the active tab and reloads it.                    

Informações Básicas da Extensão

Nome Cookie Cleaner Cookie Cleaner
ID mkmmimjebjhpilmnfoiaaaeimnejbkmh
URL Oficial https://chrome.google.com/webstore/detail/cookie-cleaner/mkmmimjebjhpilmnfoiaaaeimnejbkmh
Descrição Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z
Tamanho do Arquivo 36.39 KB
Contagem de Instalações 111
Versão Atual 1.0
Última Atualização 2018-05-17
Data de Publicação 2018-05-17
Classificação 3.60/5 Total de 5 Avaliações
Desenvolvedor https://arsho.github.io
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/arsho/cookiecleaner
URL da Página de Ajuda https://github.com/arsho/cookiecleaner
URL da Página de Política de Privacidade http://lab.datamate.ws/chrome_privacy.html
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cookie Cleaner",
    "version": "1.0",
    "description": "Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z",
    "permissions": [
        "cookies",
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "cookie.png",
        "48": "cookie.png",
        "128": "cookie.png"
    },
    "browser_action": {
        "default_title": "Clean cookies of current tab",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "run-clean-cookie": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z",
                "linux": "Ctrl+Shift+Z",
                "windows": "Ctrl+Shift+Z",
                "mac": "Ctrl+Shift+Z",
                "chromeos": "Ctrl+Shift+Z"
            },
            "description": "Run the clean cookie method"
        }
    },
    "manifest_version": 2
}