Remove Cookie Banners

Get rid of annoying notification banners on websites.

Hvad er Remove Cookie Banners?

Remove Cookie Banners er en Chrome-udvidelse udviklet af Ceni Apps, og dens hovedfunktion er "Get rid of annoying notification banners on websites.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Remove Cookie Banners-udvidelses-CRX-fil

Download Remove Cookie Banners-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Remove Cookie Banners Remove Cookie Banners
ID pacehjmodmfilemfbcahnpdcdmlocjnm
Officiel URL https://chromewebstore.google.com/detail/remove-cookie-banners/pacehjmodmfilemfbcahnpdcdmlocjnm
Beskrivelse Get rid of annoying notification banners on websites.
Filstørrelse 210 KB
Antal Installationer 3,444
Nuværende Version 3.70
Senest Opdateret 2022-05-25
Udgivelsesdato 2020-06-13
Bedømmelse 3.03/5 Samlet 29 Bedømmelser
Udvikler Ceni Apps
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}