Easy Cookie Editor
Easy Cookie Editor is a cookie manager. Control your cookies! You can add, delete, edit and search.
Easy Cookie Editorとは何ですか?
Easy Cookie EditorはRadovan Pelka (Rado)によって開発されたChromeの拡張機能で、その主な機能は「Easy Cookie Editor is a cookie manager. Control your cookies! You can add, delete, edit and search.」です。
拡張機能のスクリーンショット
Easy Cookie Editor拡張機能のCRXファイルをダウンロード
Easy Cookie Editor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Easy Cookie Editor: A complete manager for cookies accumulated during browsing.
It allows you to view, edit, create, delete cookies and search them by domain names. Contextual Identities such as Private Browsing, First-Party Isolation, and SameSite flag are also supported.
Easy Cookie Editor is designed for developers, testers or people concerned about their privacy on the Internet.
---
Privacy Policy: https://github.com/RadovanPelka/Easy-Cookie-Editor/blob/master/privacy-policy.md 拡張機能の基本情報
| 名前 | |
| ID | lidhbccbajehjnpfjpnamoiemcnhhnki |
| 公式URL | https://chromewebstore.google.com/detail/easy-cookie-editor/lidhbccbajehjnpfjpnamoiemcnhhnki |
| 説明 | Easy Cookie Editor is a cookie manager. Control your cookies! You can add, delete, edit and search. |
| ファイルサイズ | 895 KB |
| インストール数 | 3,469 |
| 現在のバージョン | 2.2 |
| 最終更新日 | 2020-03-18 |
| 公開日 | 2020-03-16 |
| 評価 | 4.57/5 合計 7 レビュー |
| 開発者 | Radovan Pelka (Rado) |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/RadovanPelka/Easy-Cookie-Editor |
| ヘルプページのURL | https://github.com/RadovanPelka/Easy-Cookie-Editor |
| プライバシーポリシーページのURL | https://github.com/RadovanPelka/Easy-Cookie-Editor/blob/master/privacy-policy.md |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Easy Cookie Editor",
"short_name": "Easy Cookie Editor",
"version": "2.2",
"description": "Easy Cookie Editor is a cookie manager. Control your cookies! You can add, delete, edit and search.",
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*",
"cookies",
"activeTab"
],
"browser_action": {
"default_popup": "popup\/index.html",
"default_title": "Easy Cookie Editor",
"default_icon": {
"16": "assets\/icon_16x16.png",
"32": "assets\/icon_32x32.png",
"48": "assets\/icon_48x48.png",
"128": "assets\/icon_128x128.png"
}
},
"icons": {
"16": "assets\/icon_16x16.png",
"32": "assets\/icon_32x32.png",
"48": "assets\/icon_48x48.png",
"128": "assets\/icon_128x128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+A",
"mac": "Command+Shift+A"
}
}
}
} | |