Minimis extended cookie management

Manage cookies using Chrome API

Minimis extended cookie managementคืออะไร?

Minimis extended cookie management เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Iulian Ghionoiu และคุณลักษณะหลักของมันคือ "Manage cookies using Chrome API"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Minimis extended cookie management

ดาวน์โหลดไฟล์ส่วนขยาย Minimis extended cookie management ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This project is an extension of "Cookie Test" form the Google API Examples.

  The "Minimis" extended cookie management uses content injection to allow a page to erase all it's cookies (especially the HttpOnly ones).

  The loaded page only needs to issue the command:
window.postMessage({ type: "ERASE_COOKIES", text: document.domain }, "*");                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Minimis extended cookie management Minimis extended cookie management
ID bphmaipfhiaagcfgdpbbclblomlgjfda
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/minimis-extended-cookie-m/bphmaipfhiaagcfgdpbbclblomlgjfda
คำอธิบาย Manage cookies using Chrome API
ขนาดไฟล์ 9.76 KB
จำนวนการติดตั้ง 14
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2013-08-24
วันที่เผยแพร่ 2013-08-24
ผู้พัฒนา Iulian Ghionoiu
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Minimis extended cookie management",
    "version": "0.1",
    "description": "Manage cookies using Chrome API",
    "permissions": [
        "cookies",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "ro.png",
        "48": "ro.png",
        "128": "ro.png"
    },
    "browser_action": {
        "default_icon": "ro.png"
    },
    "background": {
        "scripts": [
            "class\/CookieCache.class.js",
            "class\/CookieHandler.class.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ]
}