AntiCookieBox

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

AntiCookieBoxとは何ですか?

AntiCookieBoxはNoel Friedrichによって開発されたChromeの拡張機能で、その主な機能は「This extension will delete an 'accept cookie' section of a page, by simply removing it from your screen」です。

拡張機能のスクリーンショット

screenshot

AntiCookieBox拡張機能のCRXファイルをダウンロード

AntiCookieBox拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
}