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.”。

擴展截圖

screenshot
screenshot
screenshot

下載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                    

擴展基本資訊

名稱 Easy Cookie Editor Easy Cookie Editor
ID lidhbccbajehjnpfjpnamoiemcnhhnki
官方網址 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"
            }
        }
    }
}