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
¿Qué es Fake News Detector with Pinocchio Alerts?
Fake News Detector with Pinocchio Alerts es una extensión de Chrome desarrollada por https://pinocchioalerts.com, y su función principal es "Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Fake News Detector with Pinocchio Alerts
Descarga archivos de extensión Fake News Detector with Pinocchio Alerts en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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!
Información Básica de la Extensión
Nombre | |
ID | opdabcbeebkhbhoppdcmggdoahpjhdii |
URL Oficial | https://chrome.google.com/webstore/detail/fake-news-detector-with-p/opdabcbeebkhbhoppdcmggdoahpjhdii |
Descripción | Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know |
Tamaño del Archivo | 83.78 KB |
Cantidad de Instalaciones | 134 |
Versión Actual | 1.1 |
Última Actualización | 2017-07-28 |
Fecha de Publicación | 2017-07-28 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | https://pinocchioalerts.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://pinocchioalerts.com/ |
URL de la Página de Política de Privacidad | https://pinocchioalerts.com/pino_privacypolicy.htm |
Idiomas Soportados | 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" ] } |