Polygraph
Polygraph analyzes webpages and warns you about dishonest articles.
Was ist Polygraph?
Polygraph ist eine Chrome-Erweiterung, die von Andrew Peter Prifer entwickelt wurde, und ihr Hauptmerkmal ist "Polygraph analyzes webpages and warns you about dishonest articles.".
Erweiterungsscreenshots
Polygraph-Erweiterungs-CRX-Datei herunterladen
Laden Sie Polygraph-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Polygraph |
ID | mbmblpolabjhoedckfbimgbnoogmcooi |
Offizielle URL | https://chromewebstore.google.com/detail/polygraph/mbmblpolabjhoedckfbimgbnoogmcooi |
Beschreibung | Polygraph analyzes webpages and warns you about dishonest articles. |
Dateigröße | 82.61 KB |
Installationsanzahl | 34 |
Aktuelle Version | 0.1.1 |
Letztes Update | 2017-01-17 |
Veröffentlichungsdatum | 2017-01-17 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Andrew Peter Prifer |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/andrewpeterprifer/Polygraph |
Hilfeseite URL | https://github.com/andrewpeterprifer/Polygraph/issues |
Unterstützte Sprachen | 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 } ] } |