AntiCookieBox

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

AntiCookieBox là gì?

AntiCookieBox là một tiện ích mở rộng Chrome được phát triển bởi Noel Friedrich, và tính năng chính của nó là "This extension will delete an 'accept cookie' section of a page, by simply removing it from your screen".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng AntiCookieBox

Tải xuống các tệp mở rộng AntiCookieBox dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AntiCookieBox AntiCookieBox
ID ljhngkhholmmlblkeocpjophaefbnccb
URL Chính Thức https://chromewebstore.google.com/detail/anticookiebox/ljhngkhholmmlblkeocpjophaefbnccb
Mô tả This extension will delete an 'accept cookie' section of a page, by simply removing it from your screen
Kích Thước Tệp 656 KB
Số Lần Cài Đặt 108
Phiên Bản Hiện Tại 2.4
Cập Nhật Lần Cuối 2022-01-25
Ngày Phát Hành 2021-04-28
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Noel Friedrich
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}