Newsblock

Your recommender of credible news sources

什么是Newsblock?

Newsblock是由https://newsblock.co开发的Chrome扩展程序,该扩展的主要功能是“Your recommender of credible news sources”。

扩展截图

screenshot
screenshot

下载Newsblock扩展crx文件

下载Newsblock扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Newsblock was made to fight bad/clickbaity news by redirecting you to the best article covering the stories you click on

With the Newsblock plugin you can support quality news by simply browsing the web                    

扩展基本信息

名称 Newsblock Newsblock
ID pkhdmfigkmhboekijlapffdjbdhhmmbg
官方URL https://chromewebstore.google.com/detail/newsblock/pkhdmfigkmhboekijlapffdjbdhhmmbg
简介 Your recommender of credible news sources
文件大小 160 KB
安装次数 29
当前版本 1.09
更新时间 2018-08-30
上架时间 2018-08-29
开发者 https://newsblock.co
电子邮箱 [email protected]
付费类型 free
扩展官网 http://newsblock.co
隐私政策页面URL https://github.com/jawerty/myAlgorithm/blob/main/README.md
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Newsblock",
    "description": "Your recommender of credible news sources",
    "version": "1.09",
    "browser_action": {
        "default_icon": "newsblock_icon_128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "newsblock_icon_16.png",
        "48": "newsblock_icon_48.png",
        "128": "newsblock_icon_128.png"
    },
    "background": {
        "scripts": [
            "google-analytics-bundle.js",
            "levenshtein.min.js",
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "https:\/\/www.google-analytics.com\/",
        "activeTab",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ]
}