Cookie Cutter GDPR Auto-Deny (en)

Automatically denies cookie access for sites that provide that option.

什麼是Cookie Cutter GDPR Auto-Deny (en)?

Cookie Cutter GDPR Auto-Deny (en)是由D Mz開發的Chrome擴展程式,該擴展的主要功能是“Automatically denies cookie access for sites that provide that option.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Cookie Cutter GDPR Auto-Deny (en)擴展crx文件

下載Cookie Cutter GDPR Auto-Deny (en)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This addon automatically denies access for all optional cookies in sites that provide a GDPR-style prompt for setting that option.

The default site list at time of writing includes all stackexchange related sites (stackoverflow, etc.), zoom.us and ikea.com.

For websites which are not in the default ruleset, you as a user can configure support for them with just a few using the "Configure this site manually" option. If you do this I encourage you use the settings page to submit this custom rule to me so I can get it added to the default ruleset in future releases :)

Also included is a per-website whitelist; if a site is whitelisted you will see its option dialogues as if cookie cutter GDPR auto-deny were not installed at all.                    

擴展基本資訊

名稱 Cookie Cutter GDPR Auto-Deny (en) Cookie Cutter GDPR Auto-Deny (en)
ID bokkecognodebgcjcgkihiimgegipmjg
官方網址 https://chromewebstore.google.com/detail/cookie-cutter-gdpr-auto-d/bokkecognodebgcjcgkihiimgegipmjg
簡介 Automatically denies cookie access for sites that provide that option.
檔案大小 143 KB
安裝次數 1,244
目前版本 1.4.0
更新時間 2024-02-07
上架時間 2021-10-20
評分 5.00/5 共 3 次評分
開發者 D Mz
電子郵箱 [email protected]
付費類型 free
擴展官網 https://cookie-cutter.sourceforge.io/
說明頁面URL https://sourceforge.net/p/cookie-cutter/tickets/
支援的語言 en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "__MSG_addon_name__",
    "version": "1.4.0",
    "homepage_url": "https:\/\/sourceforge.net\/projects\/cookie-cutter\/",
    "description": "__MSG_addon_description__",
    "permissions": [
        "",
        "cookies",
        "tabs",
        "storage",
        "unlimitedStorage",
        "browsingData"
    ],
    "icons": {
        "48": "icons\/cookie-cutter-48.png",
        "96": "icons\/cookie-cutter-96.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "js\/libcc.js",
                "js\/cookie-cutter.js"
            ]
        }
    ],
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "19": "icons\/cookie-cutter-19.png",
            "38": "icons\/cookie-cutter-38.png"
        },
        "default_title": "__MSG_addon_browser_action_title__",
        "default_popup": "popup\/cc-popup.html"
    },
    "background": {
        "scripts": [
            "js\/libcc.js"
        ]
    },
    "web_accessible_resources": [
        "popup\/cc-element-selector.html",
        "popup\/cc-elem-selector-message.html",
        "css\/cookie-cutter.css",
        "data\/default-cc-rules.json",
        "data\/cc-DOM-rules-consentomatic.json"
    ],
    "options_ui": {
        "page": "options-ui\/cc-options.html"
    }
}