Cookie Cleaner

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

Qu'est-ce que Cookie Cleaner ?

Cookie Cleaner est une extension Chrome développée par https://arsho.github.io, et sa fonction principale est "Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Cookie Cleaner

Téléchargez les fichiers d'extension Cookie Cleaner au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Cookie Cleaner Cookie Cleaner
ID mkmmimjebjhpilmnfoiaaaeimnejbkmh
URL Officiel 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
Taille du Fichier 36.39 KB
Nombre d'Installations 111
Version Actuelle 1.0
Dernière Mise à Jour 2018-05-17
Date de Publication 2018-05-17
Évaluation 3.60/5 Total 5 Évaluations
Développeur https://arsho.github.io
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/arsho/cookiecleaner
URL de la Page d'Aide https://github.com/arsho/cookiecleaner
URL de la Page de Politique de Confidentialité http://lab.datamate.ws/chrome_privacy.html
Langues Prises en Charge 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
}