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

O que é Fake News Detector with Pinocchio Alerts?

Fake News Detector with Pinocchio Alerts é uma extensão do Chrome desenvolvida por https://pinocchioalerts.com, e sua principal característica é "Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Fake News Detector with Pinocchio Alerts

Baixe arquivos de extensão Fake News Detector with Pinocchio Alerts 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

                        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!                    

Informações Básicas da Extensão

Nome Fake News Detector with Pinocchio Alerts Fake News Detector with Pinocchio Alerts
ID opdabcbeebkhbhoppdcmggdoahpjhdii
URL Oficial https://chrome.google.com/webstore/detail/fake-news-detector-with-p/opdabcbeebkhbhoppdcmggdoahpjhdii
Descrição Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know
Tamanho do Arquivo 83.78 KB
Contagem de Instalações 134
Versão Atual 1.1
Última Atualização 2017-07-28
Data de Publicação 2017-07-28
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://pinocchioalerts.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://pinocchioalerts.com/
URL da Página de Política de Privacidade https://pinocchioalerts.com/pino_privacypolicy.htm
Idiomas Suportados 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"
    ]
}