Domain whitelist

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

Domain whitelistคืออะไร?

Domain whitelist เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dusan Halicky และคุณลักษณะหลักของมันคือ "World's smallest interactive ad blocker, only allow requests from user-defined list of domains."

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
}