BaitBuster
Looks for Clickbait Contents
BaitBuster란 무엇입니까?
BaitBuster은(는) dear.lab에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Looks for Clickbait Contents"입니다.
확장 프로그램 스크린샷
BaitBuster 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |