Newsblock

Your recommender of credible news sources

O que é Newsblock?

Newsblock é uma extensão do Chrome desenvolvida por https://newsblock.co, e sua principal característica é "Your recommender of credible news sources".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Newsblock

Baixe arquivos de extensão Newsblock no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Newsblock Newsblock
ID pkhdmfigkmhboekijlapffdjbdhhmmbg
URL Oficial https://chromewebstore.google.com/detail/newsblock/pkhdmfigkmhboekijlapffdjbdhhmmbg
Descrição Your recommender of credible news sources
Tamanho do Arquivo 160 KB
Contagem de Instalações 29
Versão Atual 1.09
Última Atualização 2018-08-30
Data de Publicação 2018-08-29
Desenvolvedor https://newsblock.co
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://newsblock.co
URL da Página de Política de Privacidade https://github.com/jawerty/myAlgorithm/blob/main/README.md
Idiomas Suportados 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"
        }
    ]
}