Bot Sentinel
Automatically identify inauthentic accounts and toxic Twitter trolls.
Bot Sentinel là gì?
Bot Sentinel là một tiện ích mở rộng Chrome được phát triển bởi https://botsentinel.com, và tính năng chính của nó là "Automatically identify inauthentic accounts and toxic Twitter trolls.".
Ả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 Bot Sentinel
Tải xuống các tệp mở rộng Bot Sentinel 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Bot Sentinel |
ID | eadmnplpcakhnmjbaioeholpakbknhgc |
URL Chính Thức | https://chromewebstore.google.com/detail/bot-sentinel/eadmnplpcakhnmjbaioeholpakbknhgc |
Mô tả | Automatically identify inauthentic accounts and toxic Twitter trolls. |
Kích Thước Tệp | 174 KB |
Số Lần Cài Đặt | 24,558 |
Phiên Bản Hiện Tại | 2.1.5 |
Cập Nhật Lần Cuối | 2022-03-29 |
Ngày Phát Hành | 2020-07-04 |
Đánh Giá | 3.63/5 Tổng số 124 Đánh Giá |
Nhà Phát Triển | https://botsentinel.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://botsentinel.com |
URL Trang Trợ Giúp | https://help.botsentinel.com |
URL Trang Chính Sách Bảo Mật | https://botsentinel.com/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |