Remove Cookie Banners

Get rid of annoying notification banners on websites.

Что такое Remove Cookie Banners?

Remove Cookie Banners - это расширение Chrome, разработанное Ceni Apps, и его основная функция - "Get rid of annoying notification banners on websites.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Remove Cookie Banners

Скачайте файлы расширений Remove Cookie Banners в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Remove Cookie Banners Remove Cookie Banners
ID pacehjmodmfilemfbcahnpdcdmlocjnm
Официальный URL https://chromewebstore.google.com/detail/remove-cookie-banners/pacehjmodmfilemfbcahnpdcdmlocjnm
Описание Get rid of annoying notification banners on websites.
Размер файла 210 KB
Количество установок 3,444
Текущая Версия 3.70
Последнее Обновление 2022-05-25
Дата публикации 2020-06-13
Рейтинг 3.03/5 Всего 29 оценок
Разработчик Ceni Apps
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    ]
}