Cookie Cleaner

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

Co to jest Cookie Cleaner?

Cookie Cleaner to rozszerzenie Chrome opracowane przez https://arsho.github.io, a jego główną funkcją jest „Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Cookie Cleaner

Pobierz pliki rozszerzeń Cookie Cleaner w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Cookie Cleaner Cookie Cleaner
ID mkmmimjebjhpilmnfoiaaaeimnejbkmh
Oficjalny URL https://chrome.google.com/webstore/detail/cookie-cleaner/mkmmimjebjhpilmnfoiaaaeimnejbkmh
Opis Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z
Rozmiar pliku 36.39 KB
Liczba instalacji 111
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2018-05-17
Data Publikacji 2018-05-17
Ocena 3.60/5 Łącznie 5 Oceny
Deweloper https://arsho.github.io
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/arsho/cookiecleaner
Adres URL Strony Pomocy https://github.com/arsho/cookiecleaner
Adres URL Strony Polityki Prywatności http://lab.datamate.ws/chrome_privacy.html
Obsługiwane Języki 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
}