Minimis extended cookie management
Manage cookies using Chrome API
What is Minimis extended cookie management?
Minimis extended cookie management is a Chrome extension developed by Iulian Ghionoiu, and its main feature is "Manage cookies using Chrome API".
Download Minimis extended cookie management Extension CRX File
Download Minimis extended cookie management extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 }, "*");
Extension Basic Information
Name | ![]() |
ID | bphmaipfhiaagcfgdpbbclblomlgjfda |
Official URL | https://chrome.google.com/webstore/detail/minimis-extended-cookie-m/bphmaipfhiaagcfgdpbbclblomlgjfda |
Description | Manage cookies using Chrome API |
File Size | 9.76 KB |
Installation Count | 14 |
Current Version | 0.1 |
Last Updated | 2013-08-24 |
Publish Date | 2013-08-24 |
Developer | Iulian Ghionoiu |
Payment Type | free |
Supported Languages | 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" } ] } |