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

Co to jest Fake News Detector with Pinocchio Alerts?

Fake News Detector with Pinocchio Alerts to rozszerzenie Chrome opracowane przez https://pinocchioalerts.com, a jego główną funkcją jest „Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Fake News Detector with Pinocchio Alerts

Pobierz pliki rozszerzeń Fake News Detector with Pinocchio Alerts w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Fake News Detector with Pinocchio Alerts Fake News Detector with Pinocchio Alerts
ID opdabcbeebkhbhoppdcmggdoahpjhdii
Oficjalny URL https://chrome.google.com/webstore/detail/fake-news-detector-with-p/opdabcbeebkhbhoppdcmggdoahpjhdii
Opis Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know
Rozmiar pliku 83.78 KB
Liczba instalacji 134
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2017-07-28
Data Publikacji 2017-07-28
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://pinocchioalerts.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://pinocchioalerts.com/
Adres URL Strony Polityki Prywatności https://pinocchioalerts.com/pino_privacypolicy.htm
Obsługiwane Języki 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"
    ]
}