Cookie Cutter GDPR Auto-Deny (en)

Automatically denies cookie access for sites that provide that option.

Cos'è Cookie Cutter GDPR Auto-Deny (en)?

Cookie Cutter GDPR Auto-Deny (en) è un'estensione di Chrome sviluppata da D Mz, e la sua funzione principale è "Automatically denies cookie access for sites that provide that option.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Cookie Cutter GDPR Auto-Deny (en)

Scarica i file di estensione Cookie Cutter GDPR Auto-Deny (en) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Cookie Cutter GDPR Auto-Deny (en) Cookie Cutter GDPR Auto-Deny (en)
ID bokkecognodebgcjcgkihiimgegipmjg
URL Ufficiale https://chromewebstore.google.com/detail/cookie-cutter-gdpr-auto-d/bokkecognodebgcjcgkihiimgegipmjg
Descrizione Automatically denies cookie access for sites that provide that option.
Dimensione del File 143 KB
Conteggio Installazioni 1,244
Versione Corrente 1.4.0
Ultimo Aggiornamento 2024-02-07
Data di Pubblicazione 2021-10-20
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore D Mz
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://cookie-cutter.sourceforge.io/
URL della Pagina di Aiuto https://sourceforge.net/p/cookie-cutter/tickets/
Lingue Supportate 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"
    }
}