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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://github.com/arsho/cookiecleaner
عنوان صفحة سياسة الخصوصية 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
}