Open Cookie Editor
An open-source, minimalist cookie editor for chromium browsers.
What is Open Cookie Editor?
Open Cookie Editor is a Chrome extension developed by open-cookie-editor, and its main feature is "An open-source, minimalist cookie editor for chromium browsers.".
Extension Screenshots
Download Open Cookie Editor Extension CRX File
Download Open Cookie Editor 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
Open Cookie Editor: A chromium cookie editor you can trust I don’t trust many extensions which can read/write sensitive data from the browser, so I decided to write my own and opensource the code. The codebase is intentionally small, offering a minimalist cookie editor which can be source-code reviewed in a few minutes. Some (hopefully) useful features: - edit/delete all aspects of existing cookies - create new cookies - base64 & url encode/decode helpers - smart search+filter within domain scope Get it from the extensions store (or just install yourself): If you’re extra paranoid about supply-chain attacks, review the code here, clone, and install as an unpacked extension locally: https://b4ny4n.github.io/open-cookie-editor/
Extension Basic Information
Name | Open Cookie Editor |
ID | mhelhppllnfkpaboohnijkfjeclehgab |
Official URL | https://chromewebstore.google.com/detail/open-cookie-editor/mhelhppllnfkpaboohnijkfjeclehgab |
Description | An open-source, minimalist cookie editor for chromium browsers. |
File Size | 18.77 KB |
Installation Count | 307 |
Current Version | 1.1 |
Last Updated | 2023-12-08 |
Publish Date | 2019-12-21 |
Rating | 4.67/5 Total 3 Ratings |
Developer | open-cookie-editor |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Open Cookie Editor", "version": "1.1", "background": { "service_worker": "background.js" }, "permissions": [ "cookies", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "images\/open-cookie-editor-16.png", "32": "images\/open-cookie-editor-32.png", "48": "images\/open-cookie-editor-48.png", "128": "images\/open-cookie-editor-128.png" }, "browser_action": { "default_icon": "images\/open-cookie-editor-128.png", "default_popup": "window.html" }, "description": "An open-source, minimalist cookie editor for chromium browsers.", "manifest_version": 2 } |