Domain whitelist

World's smallest interactive ad blocker, only allow requests from user-defined list of domains.

什麼是Domain whitelist?

Domain whitelist是由Dusan Halicky開發的Chrome擴展程式,該擴展的主要功能是“World's smallest interactive ad blocker, only allow requests from user-defined list of domains.”。

擴展截圖

screenshot
screenshot

下載Domain whitelist擴展crx文件

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

擴展使用說明

                        Domain whitelist (DW) is worlds smallest interactive ad blocker.
It blocks all HTTP requests. If you want to see some website,
you must explicitly allow its domain (in popup window displayed
when you click on DW button). After you install DW, first few
hours will be very intense! It's not for everybody.

DW is extremely small, the source code has only 5 kB. This is
extremely important because now anybody can read the source
and understand it. The best way how to use DW is to create
your own extension based on it, because when it comes to ad
blocking, you should not trust anyone. Not even me!

DW is distributed under GNU GPL licence version 3 or later.
Please report bugs to [email protected].                    

擴展基本資訊

名稱 Domain whitelist Domain whitelist
ID pdfmaijcdceohdpbclfdidiobpfpdkda
官方網址 https://chromewebstore.google.com/detail/domain-whitelist/pdfmaijcdceohdpbclfdidiobpfpdkda
簡介 World's smallest interactive ad blocker, only allow requests from user-defined list of domains.
檔案大小 12.3 KB
安裝次數 202
目前版本 1.0.40
更新時間 2020-04-27
上架時間 2020-04-24
評分 5.00/5 共 1 次評分
開發者 Dusan Halicky
電子郵箱 [email protected]
付費類型 free
擴展官網 https://ghost.sk/
隱私政策頁面URL https://ghost.sk/privacy-policy.html
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": {
        "email": "[email protected]"
    },
    "background": {
        "scripts": [
            "list.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "icon\/19.png"
        },
        "default_popup": "popup.html",
        "default_title": "Domain whitelist"
    },
    "name": "Domain whitelist",
    "description": "World's smallest interactive ad blocker, only allow requests from user-defined list of domains.",
    "icons": {
        "16": "icon\/16.png",
        "19": "icon\/19.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "18.0",
    "options_page": "options.html",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webRequestBlocking",
        "contextMenus"
    ],
    "version": "1.0.40"
}