Hetzblocker

Blocks links and requests to websites from inflammatory media such as Axel Springer, Telegraaf Media Groep, and others.

Hetzblockerคืออะไร?

Hetzblocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hetzblocker และคุณลักษณะหลักของมันคือ "Blocks links and requests to websites from inflammatory media such as Axel Springer, Telegraaf Media Groep, and others."

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

screenshot

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

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

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

                        Hetzblocker is a browser extension for Chrome, Chromium and Firefox. It blocks inflammatory media outlets, their publishers, and associated sites.

Features:

 - Blocks all requests to inflammatory media and platforms — Axel Springer, De Telegraaf, and many more.

 - Saves you stress from the article — and its comments!

 - Indicates and disables links to blocked sites everywhere.

 - Handy for search result and source reference sections!


Thanks To:

This extension is heavily inspired by autinerd’s hosts file, and revengeday’s and rleh’s work on browser extensions. Thanks guys!

Contribute:

Want to help out? Tell everyone about the extension! For those of you who would like to help out in a more direct manner: I’m still looking for people to help maintain the block list or add translations. If you’d like to join the party, please drop me a line on GitHub at https://github.com/marklindhout/hetzblocker/ or send me an email.                    

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

ชื่อ Hetzblocker Hetzblocker
ID mhmohgpdkkegialpboobiebjjhgjabii
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hetzblocker/mhmohgpdkkegialpboobiebjjhgjabii
คำอธิบาย Blocks links and requests to websites from inflammatory media such as Axel Springer, Telegraaf Media Groep, and others.
ขนาดไฟล์ 443 KB
จำนวนการติดตั้ง 19
เวอร์ชันปัจจุบัน 0.7.3
อัปเดตครั้งล่าสุด 2020-08-02
วันที่เผยแพร่ 2020-04-10
ผู้พัฒนา hetzblocker
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://marklindhout.github.io/hetzblocker/
URL หน้าช่วยเหลือ https://github.com/marklindhout/hetzblocker/
ภาษาที่รองรับ de,en,nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hetzblocker",
    "homepage_url": "https:\/\/marklindhout.github.io\/hetzblocker\/",
    "version": "0.7.3",
    "description": "__MSG_extensionDescription__",
    "author": "Mark Lindhout",
    "default_locale": "en",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "incognito": "spanning",
    "background": {
        "page": "data\/html\/background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "data\/css\/content.css"
            ],
            "js": [
                "data\/js\/content.js"
            ]
        }
    ],
    "browser_action": {
        "browser_style": true,
        "default_title": "hetzblocker",
        "default_icon": {
            "512": "data\/icon\/icon_default_512.png",
            "256": "data\/icon\/icon_default_256.png",
            "128": "data\/icon\/icon_default_128.png",
            "96": "data\/icon\/icon_default_96.png",
            "64": "data\/icon\/icon_default_64.png",
            "48": "data\/icon\/icon_default_48.png",
            "32": "data\/icon\/icon_default_32.png",
            "24": "data\/icon\/icon_default_24.png",
            "19": "data\/icon\/icon_default_19.png",
            "16": "data\/icon\/icon_default_16.png"
        }
    },
    "icons": {
        "512": "data\/icon\/icon_default_512.png",
        "256": "data\/icon\/icon_default_256.png",
        "128": "data\/icon\/icon_default_128.png",
        "96": "data\/icon\/icon_default_96.png",
        "64": "data\/icon\/icon_default_64.png",
        "48": "data\/icon\/icon_default_48.png",
        "32": "data\/icon\/icon_default_32.png",
        "24": "data\/icon\/icon_default_24.png",
        "19": "data\/icon\/icon_default_19.png",
        "16": "data\/icon\/icon_default_16.png"
    },
    "web_accessible_resources": [
        "data\/css\/*.css",
        "data\/font\/*",
        "data\/html\/block_*.html",
        "data\/html\/install-success_*.html",
        "data\/icon\/*",
        "_locales\/*"
    ]
}