AntiCookieBox

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

AntiCookieBoxคืออะไร?

AntiCookieBox เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Noel Friedrich และคุณลักษณะหลักของมันคือ "This extension will delete an 'accept cookie' section of a page, by simply removing it from your screen"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AntiCookieBox

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
}