Host AdBlocker

An open-source DNS-based ad-blocker that operates based on host filtering to block ads, malware, phishing hostnames

Host AdBlockerคืออะไร?

Host AdBlocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rynu.smith และคุณลักษณะหลักของมันคือ "An open-source DNS-based ad-blocker that operates based on host filtering to block ads, malware, phishing hostnames"

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

screenshot

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

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

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

                        The "Host AdBlocker" is an ad-blocking extension that uses host matching instead of RegExp matching to increase blocking performance and reduce memory footprint.

How it works:
This extension installs a static hostname list to the incoming filter to block advertisement, tracker, and analytic sources. If a hostname matches, the request gets blocked. If not, the request gets processed as usual. Extensions like "uBlock Origin" or "AdBlock Plus" use the RegExp matching method. Although this method is more powerful, it is computationally expensive. 

Features:
1. You can extend the default filtering list by adding your custom domain names in the backlist hostnames on the options page.
2. To completely ignore a hostname, add it to the whitelist
3. This extension runs on manifest v3. This means that blocking performance is native.
4. You can toggle the extension on and off with a single click on the action button.

Default hostnames are collected from these lists:
1. https://adaway.org/hosts.txt
2. https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&showintro=0&mimetype=plaintext

Extra hostname rules:
1. https://oisd.nl/
2. https://energized.pro/                    

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

ชื่อ Host AdBlocker Host AdBlocker
ID lkdeaaanpdkakjbfbjmnofohljimjmlh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/host-adblocker/lkdeaaanpdkakjbfbjmnofohljimjmlh
คำอธิบาย An open-source DNS-based ad-blocker that operates based on host filtering to block ads, malware, phishing hostnames
ขนาดไฟล์ 3.7 MB
จำนวนการติดตั้ง 980
เวอร์ชันปัจจุบัน 0.2.1
อัปเดตครั้งล่าสุด 2022-03-08
วันที่เผยแพร่ 2017-10-20
คะแนน 4.00/5 รวมทั้งหมด 18 คะแนน
ผู้พัฒนา rynu.smith
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://add0n.com/adhost.html
URL หน้าช่วยเหลือ https://add0n.com/adhost.html
URL หน้านโยบายความเป็นส่วนตัว https://add0n.com/policies/rynu.smith.txt
ภาษาที่รองรับ de,en,fr,nl,da,et,hu,fi,cs,el,bg,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "Host AdBlocker",
    "version": "0.2.1",
    "description": "__MSG_appDesc__",
    "permissions": [
        "storage",
        "contextMenus",
        "declarativeNetRequest"
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "background": {
        "service_worker": "worker.js"
    },
    "action": [],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "data\/\/inject\/hide.css"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "options_ui": {
        "page": "\/data\/options\/index.html"
    },
    "homepage_url": "https:\/\/add0n.com\/adhost.html",
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "default-set",
                "enabled": false,
                "path": "rules\/default.json"
            },
            {
                "id": "oisd-set",
                "enabled": false,
                "path": "rules\/oisd.json"
            },
            {
                "id": "energized-set",
                "enabled": false,
                "path": "rules\/energized.json"
            }
        ]
    }
}