AntiCookieBox

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

AntiCookieBox क्या है?

AntiCookieBox Noel Friedrich द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will delete an 'accept cookie' section of a page, by simply removing it from your screen"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AntiCookieBox एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम AntiCookieBox AntiCookieBox
ID ljhngkhholmmlblkeocpjophaefbnccb
आधिकारिक URL https://chromewebstore.google.com/detail/anticookiebox/ljhngkhholmmlblkeocpjophaefbnccb
विवरण This extension will delete an 'accept cookie' section of a page, by simply removing it from your screen
फ़ाइल का आकार 656 KB
स्थापना संख्या 108
वर्तमान संस्करण 2.4
अंतिम अपडेट 2022-01-25
प्रकाशन तिथि 2021-04-28
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर Noel Friedrich
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
}