Bot Sentinel
Automatically identify inauthentic accounts and toxic Twitter trolls.
Was ist Bot Sentinel?
Bot Sentinel ist eine Chrome-Erweiterung, die von https://botsentinel.com entwickelt wurde, und ihr Hauptmerkmal ist "Automatically identify inauthentic accounts and toxic Twitter trolls.".
Erweiterungsscreenshots
Bot Sentinel-Erweiterungs-CRX-Datei herunterladen
Laden Sie Bot Sentinel-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | eadmnplpcakhnmjbaioeholpakbknhgc |
| Offizielle URL | https://chromewebstore.google.com/detail/bot-sentinel/eadmnplpcakhnmjbaioeholpakbknhgc |
| Beschreibung | Automatically identify inauthentic accounts and toxic Twitter trolls. |
| Dateigröße | 174 KB |
| Installationsanzahl | 24,558 |
| Aktuelle Version | 2.1.5 |
| Letztes Update | 2022-03-29 |
| Veröffentlichungsdatum | 2020-07-04 |
| Bewertung | 3.63/5 Insgesamt 124 Bewertungen |
| Entwickler | https://botsentinel.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://botsentinel.com |
| Hilfeseite URL | https://help.botsentinel.com |
| URL der Datenschutzrichtlinien-Seite | https://botsentinel.com/privacy-policy |
| Unterstützte Sprachen | 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"
]
} | |