Clickbait Blocker

Automatically block sites known for being click-baity, and allow custom settings to add or remove sites from those lists.

Clickbait Blockerคืออะไร?

Clickbait Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย [email protected] และคุณลักษณะหลักของมันคือ "Automatically block sites known for being click-baity, and allow custom settings to add or remove sites from those lists."

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

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

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

                        Let's face it, there is a lot of clickbait out there. There are many site's whose entire existence is to create inflamed article titles so that you click on them. Sometimes, it is easy to know that there are to be ignored, sometimes it is more difficult.

Clickbait Blocker is a free and opensource Chrome extension that is built to allow you to be warned when hitting a known Clickbait site. This can be ignored, or added to an allowed list of sites you trust. More features on the way. 

The list of sites is free and available on GitHub— additions or removals are welcome on the GitHub repository: 

https://github.com/clickbait/clickbait-blocker-sites

The full source code can be seen also on GitHub: 

https://github.com/clickbait/clickbait-blocker                    

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

ชื่อ Clickbait Blocker Clickbait Blocker
ID bdaceojfpjpfnilmonmgohmpjokabjec
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/clickbait-blocker/bdaceojfpjpfnilmonmgohmpjokabjec
คำอธิบาย Automatically block sites known for being click-baity, and allow custom settings to add or remove sites from those lists.
ขนาดไฟล์ 27.49 KB
จำนวนการติดตั้ง 114
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2016-11-17
วันที่เผยแพร่ 2016-11-17
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/clickbait/clickbait-blocker
URL หน้าช่วยเหลือ https://github.com/clickbait/clickbait-blocker/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clickbait Blocker",
    "description": "Automatically block sites known for being click-baity, and allow custom settings to add or remove sites from those lists.",
    "version": "0.0.3",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_scripts.bundle.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "img\/logo_16.png",
        "48": "img\/logo_48.png",
        "128": "img\/logo_128.png"
    },
    "options_ui": {
        "page": "pages\/options.html",
        "chrome_style": true,
        "open_in_tab": true
    }
}