Minimis extended cookie management

Manage cookies using Chrome API

Minimis extended cookie management là gì?

Minimis extended cookie management là một tiện ích mở rộng Chrome được phát triển bởi Iulian Ghionoiu, và tính năng chính của nó là "Manage cookies using Chrome API".

Tải xuống tệp CRX của tiện ích mở rộng Minimis extended cookie management

Tải xuống các tệp mở rộng Minimis extended cookie management dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 }, "*");                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Minimis extended cookie management Minimis extended cookie management
ID bphmaipfhiaagcfgdpbbclblomlgjfda
URL Chính Thức https://chrome.google.com/webstore/detail/minimis-extended-cookie-m/bphmaipfhiaagcfgdpbbclblomlgjfda
Mô tả Manage cookies using Chrome API
Kích Thước Tệp 9.76 KB
Số Lần Cài Đặt 14
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2013-08-24
Ngày Phát Hành 2013-08-24
Nhà Phát Triển Iulian Ghionoiu
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}