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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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. معلومات أساسية عن التمديد
| الاسم | |
| 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 |
| عنوان صفحة المساعدة | https://help.botsentinel.com |
| عنوان صفحة سياسة الخصوصية | 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"
]
} | |