Polygraph
Polygraph analyzes webpages and warns you about dishonest articles.
Co to jest Polygraph?
Polygraph to rozszerzenie Chrome opracowane przez Andrew Peter Prifer, a jego główną funkcją jest „Polygraph analyzes webpages and warns you about dishonest articles.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Polygraph
Pobierz pliki rozszerzeń Polygraph w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Polygraph |
ID | mbmblpolabjhoedckfbimgbnoogmcooi |
Oficjalny URL | https://chromewebstore.google.com/detail/polygraph/mbmblpolabjhoedckfbimgbnoogmcooi |
Opis | Polygraph analyzes webpages and warns you about dishonest articles. |
Rozmiar pliku | 82.61 KB |
Liczba instalacji | 34 |
Aktualna Wersja | 0.1.1 |
Ostatnia Aktualizacja | 2017-01-17 |
Data Publikacji | 2017-01-17 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Andrew Peter Prifer |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/andrewpeterprifer/Polygraph |
Adres URL Strony Pomocy | https://github.com/andrewpeterprifer/Polygraph/issues |
Obsługiwane Języki | 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 } ] } |