Minimis extended cookie management
Manage cookies using Chrome API
Wat is Minimis extended cookie management?
Minimis extended cookie management is een Chrome-extensie ontwikkeld door Iulian Ghionoiu, en de belangrijkste functie is "Manage cookies using Chrome API".
Download het CRX-bestand van de extensie Minimis extended cookie management
Download Minimis extended cookie management-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 }, "*");
Basisinformatie over de Extensie
Naam | ![]() |
ID | bphmaipfhiaagcfgdpbbclblomlgjfda |
Officiële URL | https://chrome.google.com/webstore/detail/minimis-extended-cookie-m/bphmaipfhiaagcfgdpbbclblomlgjfda |
Beschrijving | Manage cookies using Chrome API |
Bestandsgrootte | 9.76 KB |
Aantal Installaties | 14 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2013-08-24 |
Publicatiedatum | 2013-08-24 |
Ontwikkelaar | Iulian Ghionoiu |
Betalingswijze | free |
Ondersteunde Talen | 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" } ] } |