Bot Sentinel
Automatically identify inauthentic accounts and toxic Twitter trolls.
Bot Sentinel란 무엇입니까?
Bot Sentinel은(는) https://botsentinel.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically identify inauthentic accounts and toxic Twitter trolls."입니다.
확장 프로그램 스크린샷
Bot Sentinel 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Bot Sentinel is a free non-partisan platform developed to classify and track inauthentic accounts and toxic trolls. The platform uses machine learning and artificial intelligence to classify Twitter accounts, and then adds the accounts to a publicly available database that anyone can browse.
확장 프로그램 기본 정보
이름 | Bot Sentinel |
ID | eadmnplpcakhnmjbaioeholpakbknhgc |
공식 URL | https://chromewebstore.google.com/detail/bot-sentinel/eadmnplpcakhnmjbaioeholpakbknhgc |
설명 | Automatically identify inauthentic accounts and toxic Twitter trolls. |
파일 크기 | 174 KB |
설치 횟수 | 24,558 |
현재 버전 | 2.1.5 |
최근 업데이트 | 2022-03-29 |
출시 날짜 | 2020-07-04 |
평점 | 3.63/5 총 124 개의 평점 |
개발자 | https://botsentinel.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://botsentinel.com |
도움말 페이지 URL | https://help.botsentinel.com |
개인정보 보호 정책 페이지 URL | https://botsentinel.com/privacy-policy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bot Sentinel", "short_name": "Bot Sentinel", "description": "Automatically identify inauthentic accounts and toxic Twitter trolls.", "version": "2.1.5", "manifest_version": 2, "icons": { "128": "images\/icon.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/www.twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ], "js": [ "scripts\/twitter-content.js", "libs\/canvas.js", "libs\/jquery.js", "libs\/mustache.js" ], "run_at": "document_end", "all_frames": false }, { "js": [ "scripts\/deck-content.js", "libs\/canvas.js", "libs\/jquery.js", "libs\/mustache.js" ], "matches": [ "https:\/\/tweetdeck.twitter.com\/*" ], "run_at": "document_end", "all_frames": true }, { "js": [ "scripts\/social.js", "libs\/canvas.js", "libs\/jquery.js", "libs\/mustache.js" ], "matches": [ "https:\/\/counter.social\/*" ], "run_at": "document_end", "all_frames": false } ], "browser_action": { "default_icon": { "38": "images\/icon.png" }, "default_title": "Bot Sentinel", "default_popup": "pages\/popup.html" }, "web_accessible_resources": [ "images\/*", "pages\/*", "styles\/contentscript.css" ], "permissions": [ "*:\/\/botsentinel.com\/*", "*:\/\/*.botsentinel.com\/*", "*:\/\/twitter.com\/*", "*:\/\/*.twitter.com\/*", "storage" ] } |