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
}