Bot Sentinel
Automatically identify inauthentic accounts and toxic Twitter trolls.
Cos'è Bot Sentinel?
Bot Sentinel è un'estensione di Chrome sviluppata da https://botsentinel.com, e la sua funzione principale è "Automatically identify inauthentic accounts and toxic Twitter trolls.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bot Sentinel
Scarica i file di estensione Bot Sentinel in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Bot Sentinel |
ID | eadmnplpcakhnmjbaioeholpakbknhgc |
URL Ufficiale | https://chromewebstore.google.com/detail/bot-sentinel/eadmnplpcakhnmjbaioeholpakbknhgc |
Descrizione | Automatically identify inauthentic accounts and toxic Twitter trolls. |
Dimensione del File | 174 KB |
Conteggio Installazioni | 24,558 |
Versione Corrente | 2.1.5 |
Ultimo Aggiornamento | 2022-03-29 |
Data di Pubblicazione | 2020-07-04 |
Valutazione | 3.63/5 Totale 124 Valutazioni |
Sviluppatore | https://botsentinel.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://botsentinel.com |
URL della Pagina di Aiuto | https://help.botsentinel.com |
URL della Pagina della Politica sulla Privacy | https://botsentinel.com/privacy-policy |
Lingue Supportate | 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" ] } |