BaitBuster
Looks for Clickbait Contents
BaitBusterคืออะไร?
BaitBuster เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dear.lab และคุณลักษณะหลักของมันคือ "Looks for Clickbait Contents"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BaitBuster
ดาวน์โหลดไฟล์ส่วนขยาย BaitBuster ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Powered by a highly accurated machine learning based clickbait classification model, BaitBuster aims to improve the web surfing experience of general users. Currently, this browser extension only identifies clickbaits present in a Facebook timeline. It monitors a user’s facebook news feed and alerts if a post (link) contains a clickbait headline. In addition, it provides a brief explanation behind the decision which includes- what language features present in a headline makes it a clickbait, the probability of being clickbait and whether the headline represents the corresponding body fairly. The extension also shows a brief summary of the corresponding article. Users can also provide feedback on the correctness of the classification done by BaitBuster. After installing the extension, when a user visits Facebook, s/he sees a red button on top of any clickbait links. If she clicks the button, a modal containing supplementary explanation, the summary of the corresponding body and the feedback option opens up. This extension currently only works on English written articles. Special thanks to Sabbir Md. Adnan Siddiqui for his contribution in building the extension.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | gndohhojecpkocikdheeajbfglbojpff |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/gndohhojecpkocikdheeajbfglbojpff |
คำอธิบาย | Looks for Clickbait Contents |
ขนาดไฟล์ | 46.47 KB |
จำนวนการติดตั้ง | 22 |
เวอร์ชันปัจจุบัน | 1.0.7 |
อัปเดตครั้งล่าสุด | 2018-01-19 |
วันที่เผยแพร่ | 2018-01-19 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | dear.lab |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "dear.lab", "browser_action": { "default_title": "BaitBuster", "default_icon": "assets\/images\/icon32.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.facebook.com\/*" ], "js": [ "scripts\/jquery.js", "scripts\/cbc.js", "scripts\/popup.js" ], "css": [ "assets\/styles\/cbc.css" ] } ], "description": "Looks for Clickbait Contents", "manifest_version": 2, "name": "BaitBuster", "permissions": [ "https:\/\/*.facebook.com\/*", "storage" ], "version": "1.0.7", "web_accessible_resources": [ "scripts\/jquery.js", "scripts\/cbc.js", "scripts\/popup.js", "assets\/images\/like-icon.png", "assets\/images\/dislike-icon.png" ] } |