Bot Sentinel
Automatically identify inauthentic accounts and toxic Twitter trolls.
Qu'est-ce que Bot Sentinel ?
Bot Sentinel est une extension Chrome développée par https://botsentinel.com, et sa fonction principale est "Automatically identify inauthentic accounts and toxic Twitter trolls.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Bot Sentinel
Téléchargez les fichiers d'extension Bot Sentinel au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Bot Sentinel |
ID | eadmnplpcakhnmjbaioeholpakbknhgc |
URL Officiel | https://chromewebstore.google.com/detail/bot-sentinel/eadmnplpcakhnmjbaioeholpakbknhgc |
Description | Automatically identify inauthentic accounts and toxic Twitter trolls. |
Taille du Fichier | 174 KB |
Nombre d'Installations | 24,558 |
Version Actuelle | 2.1.5 |
Dernière Mise à Jour | 2022-03-29 |
Date de Publication | 2020-07-04 |
Évaluation | 3.63/5 Total 124 Évaluations |
Développeur | https://botsentinel.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://botsentinel.com |
URL de la Page d'Aide | https://help.botsentinel.com |
URL de la Page de Politique de Confidentialité | https://botsentinel.com/privacy-policy |
Langues Prises en Charge | 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" ] } |