AntiCookieBox

This extension will delete an 'accept cookie' section of a page, by simply removing it from your screen

Wat is AntiCookieBox?

AntiCookieBox is een Chrome-extensie ontwikkeld door Noel Friedrich, en de belangrijkste functie is "This extension will delete an 'accept cookie' section of a page, by simply removing it from your screen".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie AntiCookieBox

Download AntiCookieBox-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

                        This plugin behaves similar to an ad blocker, but for 'Accept Cookies' Boxes. The plugin will automatically scan the pages you load and remove the boxes, without accepting any Cookie use!

How does it work?
Behind the scenes, Lucy is your internet-immune system. She's a detective and just really good at finding 'Accept Cookies' popups. She loves eating them :)

Just keep surfing the web as usual, but without wasting precious time clicking away useless cookie boxes and giving random web-services access to your personal data.

Get Lucy to be part of your next Web-Journey by hitting the 'Add' button!                    

Basisinformatie over de Extensie

Naam AntiCookieBox AntiCookieBox
ID ljhngkhholmmlblkeocpjophaefbnccb
Officiële URL https://chromewebstore.google.com/detail/anticookiebox/ljhngkhholmmlblkeocpjophaefbnccb
Beschrijving This extension will delete an 'accept cookie' section of a page, by simply removing it from your screen
Bestandsgrootte 656 KB
Aantal Installaties 108
Huidige Versie 2.4
Laatst Bijgewerkt 2022-01-25
Publicatiedatum 2021-04-28
Beoordeling 5.00/5 Totaal 5 Beoordelingen
Ontwikkelaar Noel Friedrich
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AntiCookieBox",
    "description": "This extension will delete an 'accept cookie' section of a page, by simply removing it from your screen",
    "version": "2.4",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/logo16.png",
        "18": "images\/logo18.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/logo16.png",
            "18": "images\/logo18.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        },
        "default_title": "AntiCookieBox",
        "default_popup": "popup\/popup.html"
    },
    "options_page": "options.html"
}