Cookie Popup Blocker

Get rid of annoying cookie popups without agreeing to the terms

什麼是Cookie Popup Blocker?

Cookie Popup Blocker是由http://cookiepopupblocker.com開發的Chrome擴展程式,該擴展的主要功能是“Get rid of annoying cookie popups without agreeing to the terms”。

擴展截圖

screenshot
screenshot

下載Cookie Popup Blocker擴展crx文件

下載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
官方網址 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"
        }
    ]
}