cookie-jar

Option for web browsers to accept or deny all cookies automatically avoiding manually selecting a privacy setting with each pop-up

什么是cookie-jar?

cookie-jar是由cookiejarextension开发的Chrome扩展程序,该扩展的主要功能是“Option for web browsers to accept or deny all cookies automatically avoiding manually selecting a privacy setting with each pop-up”。

扩展截图

下载cookie-jar扩展crx文件

下载cookie-jar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        CookieJar, its a chrome extension which accepts/denies non-essential cookies on what user desires automatically on all the websites. 

It helps users to automatically decline/accept cookies without any manual interaction, this makes the user skip those annoying popups on websites and have a better browsing experience.

Cookiejar also allows the user to delete any or all the cookies stored on the browser.                    

扩展基本信息

名称 cookie-jar cookie-jar
ID ihdcmhoonoabkjahmnbeimimgenmlmjj
官方URL https://chromewebstore.google.com/detail/cookie-jar/ihdcmhoonoabkjahmnbeimimgenmlmjj
简介 Option for web browsers to accept or deny all cookies automatically avoiding manually selecting a privacy setting with each pop-up
文件大小 359 KB
安装次数 71
当前版本 1.0.4
更新时间 2023-08-17
上架时间 2022-06-21
评分 4.33/5 共3次评分
开发者 cookiejarextension
电子邮箱 [email protected]
付费类型 in_app
隐私政策页面URL https://docs.google.com/document/d/1YCTf_rhP3t7b84CVOawvkRHYhYRlVTzC2BTa0Pen8gM/edit?usp=sharing
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "cookie-jar",
    "background": {
        "service_worker": "serviceWorker.js",
        "matches": [
            ""
        ]
    },
    "permissions": [
        "tabs",
        "cookies",
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon16_16.png",
            "24": "icons\/icon24_24.png",
            "32": "icons\/icon32_32.png",
            "128": "icons\/icon128_128.png"
        },
        "default_title": "CookieJar",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/contentscript.js"
            ]
        }
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "icons\/icon16_16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128_128.png"
    },
    "version": "1.0.4",
    "description": "Option for web browsers to accept or deny all cookies automatically avoiding manually selecting a privacy setting with each pop-up",
    "author": "Sirage-T"
}