Remove Cookie Banners

Get rid of annoying notification banners on websites.

Wat is Remove Cookie Banners?

Remove Cookie Banners is een Chrome-extensie ontwikkeld door Ceni Apps, en de belangrijkste functie is "Get rid of annoying notification banners on websites.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Remove Cookie Banners

Download Remove Cookie Banners-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Hide those obnoxious cookie notification banners!

Everyone knows what cookies are, so why do most websites demand that we see a cookie notification banner? This extension will hide them so you can browse the web in peace.  GDPR or CCPA?  Ban those banners!

It also hides other annoying notification banners, such as full-page email signup windows that popup on top of the page content.  Super annoying!

If you use an ad-blocker, this extension will even hide many of those annoying "Please disable your adblocker on our page" notifications that hide the content.

After installing Remove Cookie Banners, you'll finally have a peaceful web browsing experience where you can focus on the content, not annoying and useless notifications covering the content you're trying to read.

The extension can easily be disabled on a per-site basis in case anything goes wrong (and the setting will be remembered in future visits).  Temporarily disabling it will also let you see what obnoxious notifications were hidden by the extension... no reload necessary.

Just click "Add to Chrome," then visit your favorite website and notice how clean and peaceful the web is again!


NOTE:
* Google Chrome may show you a notice about this extension being able to access website data. This is automatically generated because Remove Cookie Banners analyzes the HTML source to intelligently hide notification banners. It does not monitor or save your browsing history or personal information.
* You may also see a warning that this extension can see your browsing history.  This is because the extension needs to access all your open tabs when you update the extension so changes take effect immediately.  This extension does not save, monitor or use your browsing history.                    

Basisinformatie over de Extensie

Naam Remove Cookie Banners Remove Cookie Banners
ID pacehjmodmfilemfbcahnpdcdmlocjnm
Officiële URL https://chromewebstore.google.com/detail/remove-cookie-banners/pacehjmodmfilemfbcahnpdcdmlocjnm
Beschrijving Get rid of annoying notification banners on websites.
Bestandsgrootte 210 KB
Aantal Installaties 3,444
Huidige Versie 3.70
Laatst Bijgewerkt 2022-05-25
Publicatiedatum 2020-06-13
Beoordeling 3.03/5 Totaal 29 Beoordelingen
Ontwikkelaar Ceni Apps
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove Cookie Banners",
    "version": "3.70",
    "manifest_version": 2,
    "icons": {
        "16": "cookie-16.png",
        "32": "cookie-32.png",
        "48": "cookie-48.png",
        "64": "cookie-64.png",
        "128": "cookie-128.png"
    },
    "author": "Ceni Apps",
    "description": "Get rid of annoying notification banners on websites.",
    "content_security_policy": "script-src 'self' https:\/\/www.googletagmanager.com https:\/\/www.google-analytics.com https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "activeTab",
        "tabs"
    ]
}