Cookie Cleaner

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

Что такое Cookie Cleaner?

Cookie Cleaner - это расширение Chrome, разработанное https://arsho.github.io, и его основная функция - "Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Cookie Cleaner

Скачайте файлы расширений Cookie Cleaner в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Cookie Cleaner Cookie Cleaner
ID mkmmimjebjhpilmnfoiaaaeimnejbkmh
Официальный URL https://chrome.google.com/webstore/detail/cookie-cleaner/mkmmimjebjhpilmnfoiaaaeimnejbkmh
Описание Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z
Размер файла 36.39 KB
Количество установок 111
Текущая Версия 1.0
Последнее Обновление 2018-05-17
Дата публикации 2018-05-17
Рейтинг 3.60/5 Всего 5 оценок
Разработчик https://arsho.github.io
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/arsho/cookiecleaner
URL страницы помощи https://github.com/arsho/cookiecleaner
URL страницы политики конфиденциальности http://lab.datamate.ws/chrome_privacy.html
Поддерживаемые языки 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
}