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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}