Newsblock

Your recommender of credible news sources

What is Newsblock?

Newsblock is a Chrome extension developed by https://newsblock.co, and its main feature is "Your recommender of credible news sources".

Extension Screenshots

screenshot
screenshot

Download Newsblock Extension CRX File

Download Newsblock extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Newsblock Newsblock
ID pkhdmfigkmhboekijlapffdjbdhhmmbg
Official URL https://chromewebstore.google.com/detail/newsblock/pkhdmfigkmhboekijlapffdjbdhhmmbg
Description Your recommender of credible news sources
File Size 160 KB
Installation Count 29
Current Version 1.09
Last Updated 2018-08-30
Publish Date 2018-08-29
Developer https://newsblock.co
Email [email protected]
Payment Type free
Extension Website http://newsblock.co
Privacy Policy Page URL https://github.com/jawerty/myAlgorithm/blob/main/README.md
Supported Languages 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"
        }
    ]
}