Minimis extended cookie management

Manage cookies using Chrome API

Co to jest Minimis extended cookie management?

Minimis extended cookie management to rozszerzenie Chrome opracowane przez Iulian Ghionoiu, a jego główną funkcją jest „Manage cookies using Chrome API”.

Pobierz plik CRX rozszerzenia Minimis extended cookie management

Pobierz pliki rozszerzeń Minimis extended cookie management w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Minimis extended cookie management Minimis extended cookie management
ID bphmaipfhiaagcfgdpbbclblomlgjfda
Oficjalny URL https://chrome.google.com/webstore/detail/minimis-extended-cookie-m/bphmaipfhiaagcfgdpbbclblomlgjfda
Opis Manage cookies using Chrome API
Rozmiar pliku 9.76 KB
Liczba instalacji 14
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2013-08-24
Data Publikacji 2013-08-24
Deweloper Iulian Ghionoiu
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}