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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}