Fake News Detector with Pinocchio Alerts

Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know

Cos'è Fake News Detector with Pinocchio Alerts?

Fake News Detector with Pinocchio Alerts è un'estensione di Chrome sviluppata da https://pinocchioalerts.com, e la sua funzione principale è "Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Fake News Detector with Pinocchio Alerts

Scarica i file di estensione Fake News Detector with Pinocchio Alerts 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

                        Pinocchio Alerts is an extension that warns you if the website you are reading has been reported as inaccurate (because of fake news related to that website). We think the world gets better when we all avoid spreading alternative facts!

We work with several organizations to help stop the spread of bogus news. There is nothing wrong with questioning what we read. Please do your part by checking sources and helping your friends and family do the same. 

Hope you enjoy!                    

Informazioni di Base sull'Estensione

Nome Fake News Detector with Pinocchio Alerts Fake News Detector with Pinocchio Alerts
ID opdabcbeebkhbhoppdcmggdoahpjhdii
URL Ufficiale https://chrome.google.com/webstore/detail/fake-news-detector-with-p/opdabcbeebkhbhoppdcmggdoahpjhdii
Descrizione Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know
Dimensione del File 83.78 KB
Conteggio Installazioni 134
Versione Corrente 1.1
Ultimo Aggiornamento 2017-07-28
Data di Pubblicazione 2017-07-28
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://pinocchioalerts.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://pinocchioalerts.com/
URL della Pagina della Politica sulla Privacy https://pinocchioalerts.com/pino_privacypolicy.htm
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fake News Detector with Pinocchio Alerts",
    "description": "Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know",
    "version": "1.1",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "author": "Diego Alvarez and Andres Vidal",
    "browser_action": {
        "default_icon": "pino_38.png",
        "default_popup": "popup.html",
        "default_title": "Click to check for Pinocchio Alerts!"
    },
    "icons": {
        "128": "pino_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content_validator.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "notifications"
    ]
}