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/ 拡張機能の基本情報
| 名前 | |
| ID | mhelhppllnfkpaboohnijkfjeclehgab |
| 公式URL | 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 |
| Eメール | [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
} | |