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是由[email protected]开发的Chrome扩展程序,该扩展的主要功能是“Automatically block sites known for being click-baity, and allow custom settings to add or remove sites from those lists.”。

下载Clickbait Blocker扩展crx文件

下载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
    }
}