Minimis extended cookie management

Manage cookies using Chrome API

什麼是Minimis extended cookie management?

Minimis extended cookie management是由Iulian Ghionoiu開發的Chrome擴展程式,該擴展的主要功能是“Manage cookies using Chrome API”。

下載Minimis extended cookie management擴展crx文件

下載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
官方網址 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"
        }
    ]
}