Polygraph
Polygraph analyzes webpages and warns you about dishonest articles.
O que é Polygraph?
Polygraph é uma extensão do Chrome desenvolvida por Andrew Peter Prifer, e sua principal característica é "Polygraph analyzes webpages and warns you about dishonest articles.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Polygraph
Baixe arquivos de extensão Polygraph 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
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
Informações Básicas da Extensão
Nome | Polygraph |
ID | mbmblpolabjhoedckfbimgbnoogmcooi |
URL Oficial | https://chromewebstore.google.com/detail/polygraph/mbmblpolabjhoedckfbimgbnoogmcooi |
Descrição | Polygraph analyzes webpages and warns you about dishonest articles. |
Tamanho do Arquivo | 82.61 KB |
Contagem de Instalações | 34 |
Versão Atual | 0.1.1 |
Última Atualização | 2017-01-17 |
Data de Publicação | 2017-01-17 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Andrew Peter Prifer |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/andrewpeterprifer/Polygraph |
URL da Página de Ajuda | https://github.com/andrewpeterprifer/Polygraph/issues |
Idiomas Suportados | 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 } ] } |