Minimis extended cookie management
Manage cookies using Chrome API
Cos'è Minimis extended cookie management?
Minimis extended cookie management è un'estensione di Chrome sviluppata da Iulian Ghionoiu, e la sua funzione principale è "Manage cookies using Chrome API".
Scarica il file CRX dell'estensione Minimis extended cookie management
Scarica i file di estensione Minimis extended cookie management in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 }, "*");
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | bphmaipfhiaagcfgdpbbclblomlgjfda |
URL Ufficiale | https://chrome.google.com/webstore/detail/minimis-extended-cookie-m/bphmaipfhiaagcfgdpbbclblomlgjfda |
Descrizione | Manage cookies using Chrome API |
Dimensione del File | 9.76 KB |
Conteggio Installazioni | 14 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2013-08-24 |
Data di Pubblicazione | 2013-08-24 |
Sviluppatore | Iulian Ghionoiu |
Tipo di Pagamento | free |
Lingue Supportate | 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" } ] } |