Newsblock

Your recommender of credible news sources

Cos'è Newsblock?

Newsblock è un'estensione di Chrome sviluppata da https://newsblock.co, e la sua funzione principale è "Your recommender of credible news sources".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Newsblock

Scarica i file di estensione Newsblock in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Newsblock Newsblock
ID pkhdmfigkmhboekijlapffdjbdhhmmbg
URL Ufficiale https://chromewebstore.google.com/detail/newsblock/pkhdmfigkmhboekijlapffdjbdhhmmbg
Descrizione Your recommender of credible news sources
Dimensione del File 160 KB
Conteggio Installazioni 29
Versione Corrente 1.09
Ultimo Aggiornamento 2018-08-30
Data di Pubblicazione 2018-08-29
Sviluppatore https://newsblock.co
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://newsblock.co
URL della Pagina della Politica sulla Privacy https://github.com/jawerty/myAlgorithm/blob/main/README.md
Lingue Supportate 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"
        }
    ]
}