Cookie Popup Blocker

Get rid of annoying cookie popups without agreeing to the terms

Cos'è Cookie Popup Blocker?

Cookie Popup Blocker è un'estensione di Chrome sviluppata da http://cookiepopupblocker.com, e la sua funzione principale è "Get rid of annoying cookie popups without agreeing to the terms".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Cookie Popup Blocker

Scarica i file di estensione Cookie Popup Blocker 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

                        Cookie Popup Blocker automatically removes annoying cookie popups that appear when you visit a page without agreeing to the terms.

This package does not maintain a big white list and basically focuses on the most aggressive cookie popups that block the page with a full page popup needing you to agree before being able to view and scroll the content.

In case Cookie Popup Blocker incorrectly removes part of the page, you can exclude the website from being processed by opening the extension popup and clicking Exclude This Website.

This is an open source product and you can find the source code on github at: https://github.com/n4cr/cookiepopupblocker

You can also follow me on twitter @n4cr.                    

Informazioni di Base sull'Estensione

Nome Cookie Popup Blocker Cookie Popup Blocker
ID ibmamncbgbgjgnncigjlfchmflhdagkc
URL Ufficiale https://chrome.google.com/webstore/detail/cookie-popup-blocker/ibmamncbgbgjgnncigjlfchmflhdagkc
Descrizione Get rid of annoying cookie popups without agreeing to the terms
Dimensione del File 437 KB
Conteggio Installazioni 457
Versione Corrente 0.0.3
Ultimo Aggiornamento 2021-06-16
Data di Pubblicazione 2021-05-19
Valutazione 2.67/5 Totale 3 Valutazioni
Sviluppatore http://cookiepopupblocker.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://cookiepopupblocker.carrd.co
URL della Pagina di Aiuto http://twitter.com/n4cr
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cookie Popup Blocker",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Get rid of annoying cookie popups without agreeing to the terms",
    "homepage_url": "http:\/\/cookiepopupblocker.com",
    "icons": {
        "16": "icons\/cookie16.png",
        "48": "icons\/cookie48.png",
        "128": "icons\/cookie128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/cookie48.png",
        "default_title": "Cookie Popup Blocker",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "run_at": "document_end"
        }
    ]
}