Polygraph
Polygraph analyzes webpages and warns you about dishonest articles.
什麼是Polygraph?
Polygraph是由Andrew Peter Prifer開發的Chrome擴展程式,該擴展的主要功能是“Polygraph analyzes webpages and warns you about dishonest articles.”。
擴展截圖
下載Polygraph擴展crx文件
下載Polygraph擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Polygraph |
ID | mbmblpolabjhoedckfbimgbnoogmcooi |
官方網址 | https://chromewebstore.google.com/detail/polygraph/mbmblpolabjhoedckfbimgbnoogmcooi |
簡介 | Polygraph analyzes webpages and warns you about dishonest articles. |
檔案大小 | 82.61 KB |
安裝次數 | 34 |
目前版本 | 0.1.1 |
更新時間 | 2017-01-17 |
上架時間 | 2017-01-17 |
評分 | 5.00/5 共 2 次評分 |
開發者 | Andrew Peter Prifer |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/andrewpeterprifer/Polygraph |
說明頁面URL | https://github.com/andrewpeterprifer/Polygraph/issues |
支援的語言 | 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 } ] } |