Cookie Cutter GDPR Auto-Deny (en)

Automatically denies cookie access for sites that provide that option.

Cookie Cutter GDPR Auto-Deny (en) là gì?

Cookie Cutter GDPR Auto-Deny (en) là một tiện ích mở rộng Chrome được phát triển bởi D Mz, và tính năng chính của nó là "Automatically denies cookie access for sites that provide that option.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cookie Cutter GDPR Auto-Deny (en)

Tải xuống các tệp mở rộng Cookie Cutter GDPR Auto-Deny (en) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cookie Cutter GDPR Auto-Deny (en) Cookie Cutter GDPR Auto-Deny (en)
ID bokkecognodebgcjcgkihiimgegipmjg
URL Chính Thức https://chromewebstore.google.com/detail/cookie-cutter-gdpr-auto-d/bokkecognodebgcjcgkihiimgegipmjg
Mô tả Automatically denies cookie access for sites that provide that option.
Kích Thước Tệp 143 KB
Số Lần Cài Đặt 1,244
Phiên Bản Hiện Tại 1.4.0
Cập Nhật Lần Cuối 2024-02-07
Ngày Phát Hành 2021-10-20
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển D Mz
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://cookie-cutter.sourceforge.io/
URL Trang Trợ Giúp https://sourceforge.net/p/cookie-cutter/tickets/
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}