Open Cookie Editor
An open-source, minimalist cookie editor for chromium browsers.
什麼是Open Cookie Editor?
Open Cookie Editor是由open-cookie-editor開發的Chrome擴展程式,該擴展的主要功能是“An open-source, minimalist cookie editor for chromium browsers.”。
擴展截圖
下載Open Cookie Editor擴展crx文件
下載Open Cookie Editor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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/
擴展基本資訊
名稱 | Open Cookie Editor |
ID | mhelhppllnfkpaboohnijkfjeclehgab |
官方網址 | https://chromewebstore.google.com/detail/open-cookie-editor/mhelhppllnfkpaboohnijkfjeclehgab |
簡介 | An open-source, minimalist cookie editor for chromium browsers. |
檔案大小 | 18.77 KB |
安裝次數 | 307 |
目前版本 | 1.1 |
更新時間 | 2023-12-08 |
上架時間 | 2019-12-21 |
評分 | 4.67/5 共 3 次評分 |
開發者 | open-cookie-editor |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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 } |