Bot Sentinel
Automatically identify inauthentic accounts and toxic Twitter trolls.
Bot Sentinelคืออะไร?
Bot Sentinel เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://botsentinel.com และคุณลักษณะหลักของมันคือ "Automatically identify inauthentic accounts and toxic Twitter trolls."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bot Sentinel
ดาวน์โหลดไฟล์ส่วนขยาย Bot Sentinel ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |