AntiCookieBox

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

Qu'est-ce que AntiCookieBox ?

AntiCookieBox est une extension Chrome développée par Noel Friedrich, et sa fonction principale est "This extension will delete an 'accept cookie' section of a page, by simply removing it from your screen".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension AntiCookieBox

Téléchargez les fichiers d'extension AntiCookieBox au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom AntiCookieBox AntiCookieBox
ID ljhngkhholmmlblkeocpjophaefbnccb
URL Officiel https://chromewebstore.google.com/detail/anticookiebox/ljhngkhholmmlblkeocpjophaefbnccb
Description This extension will delete an 'accept cookie' section of a page, by simply removing it from your screen
Taille du Fichier 656 KB
Nombre d'Installations 108
Version Actuelle 2.4
Dernière Mise à Jour 2022-01-25
Date de Publication 2021-04-28
Évaluation 5.00/5 Total 5 Évaluations
Développeur Noel Friedrich
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
}