Polygraph
Polygraph analyzes webpages and warns you about dishonest articles.
Polygraph là gì?
Polygraph là một tiện ích mở rộng Chrome được phát triển bởi Andrew Peter Prifer, và tính năng chính của nó là "Polygraph analyzes webpages and warns you about dishonest articles.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Polygraph
Tải xuống các tệp mở rộng Polygraph dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Polygraph |
ID | mbmblpolabjhoedckfbimgbnoogmcooi |
URL Chính Thức | https://chromewebstore.google.com/detail/polygraph/mbmblpolabjhoedckfbimgbnoogmcooi |
Mô tả | Polygraph analyzes webpages and warns you about dishonest articles. |
Kích Thước Tệp | 82.61 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 0.1.1 |
Cập Nhật Lần Cuối | 2017-01-17 |
Ngày Phát Hành | 2017-01-17 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Andrew Peter Prifer |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/andrewpeterprifer/Polygraph |
URL Trang Trợ Giúp | https://github.com/andrewpeterprifer/Polygraph/issues |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |