Remove Cookie Banners

Get rid of annoying notification banners on websites.

Vad är Remove Cookie Banners?

Remove Cookie Banners är en Chrome-tillägg utvecklad av Ceni Apps, och dess huvudfunktion är "Get rid of annoying notification banners on websites.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Remove Cookie Banners-förlängningens CRX-fil

Ladda ner Remove Cookie Banners-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Remove Cookie Banners Remove Cookie Banners
ID pacehjmodmfilemfbcahnpdcdmlocjnm
Officiell webbadress https://chromewebstore.google.com/detail/remove-cookie-banners/pacehjmodmfilemfbcahnpdcdmlocjnm
Beskrivning Get rid of annoying notification banners on websites.
Filstorlek 210 KB
Antal Installationer 3,444
Aktuell Version 3.70
Senast Uppdaterad 2022-05-25
Publiceringsdatum 2020-06-13
Betyg 3.03/5 Totalt 29 Betyg
Utvecklare Ceni Apps
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}