AdBlock Unicorn

The cutest Ad blocker, blocks ads from more than 50'000 sources.

什麼是AdBlock Unicorn?

AdBlock Unicorn是由AdBlock Unicorn開發的Chrome擴展程式,該擴展的主要功能是“The cutest Ad blocker, blocks ads from more than 50'000 sources.”。

擴展截圖

screenshot

下載AdBlock Unicorn擴展crx文件

下載AdBlock Unicorn擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Our technology blocks ads before they're displayed by blocking the requests.
In case something goes through we also have failsafe JS and CSS to remove ads

You may disable AdBlock Unicorn at any time by using the toggle button after clicking on the icon.

AdBlock Unicorn checks for custom script in our server to make sure we add all the latest critical ad blockings that cannot wait until the next Chrome store update which sometimes take multiple days.

Please visit our website and send us your feedback and suggestions on how to make our product better and cuter !

FAQ :
Q : Do you block video ads on Youtube and Facebook ?
A : Not at the moment, we are working on it                    

擴展基本資訊

名稱 AdBlock Unicorn AdBlock Unicorn
ID ldjhogknogpdklogdocbicnlpljekejl
官方網址 https://chromewebstore.google.com/detail/adblock-unicorn/ldjhogknogpdklogdocbicnlpljekejl
簡介 The cutest Ad blocker, blocks ads from more than 50'000 sources.
檔案大小 391 KB
安裝次數 818
目前版本 2.0.2.0
更新時間 2020-11-17
上架時間 2020-10-13
評分 3.38/5 共 8 次評分
開發者 AdBlock Unicorn
電子郵箱 [email protected]
付費類型 free
擴展官網 https://adblock-unicorn.com/
隱私政策頁面URL https://www.adblock-unicorn.com/privacy.html
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AdBlock Unicorn",
    "version": "2.0.2.0",
    "description": "The cutest Ad blocker, blocks ads from more than 50'000 sources.",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "https:\/\/*\/*",
        "storage"
    ],
    "icons": {
        "128": "128.png"
    },
    "web_accessible_resources": [
        "128.png"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "matches": [
                "https:\/\/adblock-unicorn.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "validation.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "menu.html"
    },
    "manifest_version": 2
}