Cookie Cleaner

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

What is Cookie Cleaner?

Cookie Cleaner is a Chrome extension developed by https://arsho.github.io, and its main feature is "Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z".

Extension Screenshots

screenshot

Download Cookie Cleaner Extension CRX File

Download Cookie Cleaner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Cookie Cleaner Cookie Cleaner
ID mkmmimjebjhpilmnfoiaaaeimnejbkmh
Official URL https://chrome.google.com/webstore/detail/cookie-cleaner/mkmmimjebjhpilmnfoiaaaeimnejbkmh
Description Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z
File Size 36.39 KB
Installation Count 111
Current Version 1.0
Last Updated 2018-05-17
Publish Date 2018-05-17
Rating 3.60/5 Total 5 Ratings
Developer https://arsho.github.io
Email [email protected]
Payment Type free
Extension Website https://github.com/arsho/cookiecleaner
Help Page URL https://github.com/arsho/cookiecleaner
Privacy Policy Page URL http://lab.datamate.ws/chrome_privacy.html
Supported Languages 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
}