Polygraph
Polygraph analyzes webpages and warns you about dishonest articles.
¿Qué es Polygraph?
Polygraph es una extensión de Chrome desarrollada por Andrew Peter Prifer, y su función principal es "Polygraph analyzes webpages and warns you about dishonest articles.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Polygraph
Descarga archivos de extensión Polygraph 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
I made Polygraph to combat clickbait. Many journalists and writers use overly sensationalistic, exaggerating or downright deceitful headlines in order to attract attention. The extension analyzes the title and tells you about all the things that are possibly wrong with the article. Important! Polygraph is an experiment. As such, it is far from perfect. It is also open source: http://bit.ly/2j4zG6m
Información Básica de la Extensión
Nombre | Polygraph |
ID | mbmblpolabjhoedckfbimgbnoogmcooi |
URL Oficial | https://chromewebstore.google.com/detail/polygraph/mbmblpolabjhoedckfbimgbnoogmcooi |
Descripción | Polygraph analyzes webpages and warns you about dishonest articles. |
Tamaño del Archivo | 82.61 KB |
Cantidad de Instalaciones | 34 |
Versión Actual | 0.1.1 |
Última Actualización | 2017-01-17 |
Fecha de Publicación | 2017-01-17 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | Andrew Peter Prifer |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/andrewpeterprifer/Polygraph |
URL de la Página de Ayuda | https://github.com/andrewpeterprifer/Polygraph/issues |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "version": "0.1.1", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "page_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "__MSG_browserActionTitle__", "default_popup": "pages\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "styles\/contentscript.css" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ] } |