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 |
官方URL | 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 } ] } |