Cookie Cleaner

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

Vad är Cookie Cleaner?

Cookie Cleaner är en Chrome-tillägg utvecklad av https://arsho.github.io, och dess huvudfunktion är "Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z".

Tilläggsskärmbilder

screenshot

Ladda ner Cookie Cleaner-förlängningens CRX-fil

Ladda ner Cookie Cleaner-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Cookie Cleaner Cookie Cleaner
ID mkmmimjebjhpilmnfoiaaaeimnejbkmh
Officiell webbadress https://chrome.google.com/webstore/detail/cookie-cleaner/mkmmimjebjhpilmnfoiaaaeimnejbkmh
Beskrivning Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z
Filstorlek 36.39 KB
Antal Installationer 111
Aktuell Version 1.0
Senast Uppdaterad 2018-05-17
Publiceringsdatum 2018-05-17
Betyg 3.60/5 Totalt 5 Betyg
Utvecklare https://arsho.github.io
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/arsho/cookiecleaner
Hjälpsida URL https://github.com/arsho/cookiecleaner
URL till Sekretesspolicy Sidan http://lab.datamate.ws/chrome_privacy.html
Stödda Språk 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
}