Cookie Popup Blocker

Get rid of annoying cookie popups without agreeing to the terms

Cookie Popup Blockerคืออะไร?

Cookie Popup Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://cookiepopupblocker.com และคุณลักษณะหลักของมันคือ "Get rid of annoying cookie popups without agreeing to the terms"

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Cookie Popup Blocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Cookie Popup Blocker automatically removes annoying cookie popups that appear when you visit a page without agreeing to the terms.

This package does not maintain a big white list and basically focuses on the most aggressive cookie popups that block the page with a full page popup needing you to agree before being able to view and scroll the content.

In case Cookie Popup Blocker incorrectly removes part of the page, you can exclude the website from being processed by opening the extension popup and clicking Exclude This Website.

This is an open source product and you can find the source code on github at: https://github.com/n4cr/cookiepopupblocker

You can also follow me on twitter @n4cr.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Cookie Popup Blocker Cookie Popup Blocker
ID ibmamncbgbgjgnncigjlfchmflhdagkc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/cookie-popup-blocker/ibmamncbgbgjgnncigjlfchmflhdagkc
คำอธิบาย Get rid of annoying cookie popups without agreeing to the terms
ขนาดไฟล์ 437 KB
จำนวนการติดตั้ง 457
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2021-06-16
วันที่เผยแพร่ 2021-05-19
คะแนน 2.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา http://cookiepopupblocker.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://cookiepopupblocker.carrd.co
URL หน้าช่วยเหลือ http://twitter.com/n4cr
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cookie Popup Blocker",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Get rid of annoying cookie popups without agreeing to the terms",
    "homepage_url": "http:\/\/cookiepopupblocker.com",
    "icons": {
        "16": "icons\/cookie16.png",
        "48": "icons\/cookie48.png",
        "128": "icons\/cookie128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/cookie48.png",
        "default_title": "Cookie Popup Blocker",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "run_at": "document_end"
        }
    ]
}