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
公式URL 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
Eメール [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"
    }
}