Polygraph
Polygraph analyzes webpages and warns you about dishonest articles.
Cos'è Polygraph?
Polygraph è un'estensione di Chrome sviluppata da Andrew Peter Prifer, e la sua funzione principale è "Polygraph analyzes webpages and warns you about dishonest articles.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Polygraph
Scarica i file di estensione Polygraph in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Polygraph |
ID | mbmblpolabjhoedckfbimgbnoogmcooi |
URL Ufficiale | https://chromewebstore.google.com/detail/polygraph/mbmblpolabjhoedckfbimgbnoogmcooi |
Descrizione | Polygraph analyzes webpages and warns you about dishonest articles. |
Dimensione del File | 82.61 KB |
Conteggio Installazioni | 34 |
Versione Corrente | 0.1.1 |
Ultimo Aggiornamento | 2017-01-17 |
Data di Pubblicazione | 2017-01-17 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Andrew Peter Prifer |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/andrewpeterprifer/Polygraph |
URL della Pagina di Aiuto | https://github.com/andrewpeterprifer/Polygraph/issues |
Lingue Supportate | 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 } ] } |