Cookie Cleaner

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

Co je Cookie Cleaner?

Cookie Cleaner je rozšíření Chrome vyvinuté https://arsho.github.io, a jeho hlavní funkcí je „Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Cookie Cleaner

Stáhněte si soubory rozšíření Cookie Cleaner ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Cookie Cleaner Cookie Cleaner
ID mkmmimjebjhpilmnfoiaaaeimnejbkmh
Oficiální URL https://chrome.google.com/webstore/detail/cookie-cleaner/mkmmimjebjhpilmnfoiaaaeimnejbkmh
Popis Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z
Velikost souboru 36.39 KB
Počet instalací 111
Aktuální Verze 1.0
Poslední Aktualizace 2018-05-17
Datum Vydání 2018-05-17
Hodnocení 3.60/5 Celkem 5 Hodnocení
Vývojář https://arsho.github.io
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/arsho/cookiecleaner
URL Stránky Nápovědy https://github.com/arsho/cookiecleaner
URL Stránky Zásad Ochrany Soukromí http://lab.datamate.ws/chrome_privacy.html
Podporované Jazyky 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
}