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

Was ist Fake News Detector with Pinocchio Alerts?

Fake News Detector with Pinocchio Alerts ist eine Chrome-Erweiterung, die von https://pinocchioalerts.com entwickelt wurde, und ihr Hauptmerkmal ist "Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Fake News Detector with Pinocchio Alerts-Erweiterungs-CRX-Datei herunterladen

Laden Sie Fake News Detector with Pinocchio Alerts-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Fake News Detector with Pinocchio Alerts Fake News Detector with Pinocchio Alerts
ID opdabcbeebkhbhoppdcmggdoahpjhdii
Offizielle URL https://chrome.google.com/webstore/detail/fake-news-detector-with-p/opdabcbeebkhbhoppdcmggdoahpjhdii
Beschreibung Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know
Dateigröße 83.78 KB
Installationsanzahl 134
Aktuelle Version 1.1
Letztes Update 2017-07-28
Veröffentlichungsdatum 2017-07-28
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://pinocchioalerts.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://pinocchioalerts.com/
URL der Datenschutzrichtlinien-Seite https://pinocchioalerts.com/pino_privacypolicy.htm
Unterstützte Sprachen 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"
    ]
}