Cookie Cleaner

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

Apa itu Cookie Cleaner?

Cookie Cleaner adalah ekstensi Chrome yang dikembangkan oleh https://arsho.github.io, dan fitur utamanya adalah "Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Cookie Cleaner

Unduh file ekstensi Cookie Cleaner dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Cookie Cleaner Cookie Cleaner
ID mkmmimjebjhpilmnfoiaaaeimnejbkmh
URL Resmi https://chrome.google.com/webstore/detail/cookie-cleaner/mkmmimjebjhpilmnfoiaaaeimnejbkmh
Deskripsi Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z
Ukuran File 36.39 KB
Jumlah Instalasi 111
Versi Saat Ini 1.0
Terakhir Diperbarui 2018-05-17
Tanggal Publikasi 2018-05-17
Penilaian 3.60/5 Total 5 Penilaian
Pengembang https://arsho.github.io
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/arsho/cookiecleaner
URL Halaman Bantuan https://github.com/arsho/cookiecleaner
URL Halaman Kebijakan Privasi http://lab.datamate.ws/chrome_privacy.html
Bahasa yang Didukung 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
}