Polygraph
Polygraph analyzes webpages and warns you about dishonest articles.
Polygraphคืออะไร?
Polygraph เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andrew Peter Prifer และคุณลักษณะหลักของมันคือ "Polygraph analyzes webpages and warns you about dishonest articles."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Polygraph
ดาวน์โหลดไฟล์ส่วนขยาย 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 } ] } |