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) |
| 电子邮箱 | [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"
}
}
}
} | |