Bot Sentinel

Automatically identify inauthentic accounts and toxic Twitter trolls.

¿Qué es Bot Sentinel?

Bot Sentinel es una extensión de Chrome desarrollada por https://botsentinel.com, y su función principal es "Automatically identify inauthentic accounts and toxic Twitter trolls.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Bot Sentinel

Descarga archivos de extensión Bot Sentinel en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Bot Sentinel Bot Sentinel
ID eadmnplpcakhnmjbaioeholpakbknhgc
URL Oficial https://chromewebstore.google.com/detail/bot-sentinel/eadmnplpcakhnmjbaioeholpakbknhgc
Descripción Automatically identify inauthentic accounts and toxic Twitter trolls.
Tamaño del Archivo 174 KB
Cantidad de Instalaciones 24,558
Versión Actual 2.1.5
Última Actualización 2022-03-29
Fecha de Publicación 2020-07-04
Calificación 3.63/5 Total de 124 Calificaciones
Desarrollador https://botsentinel.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://botsentinel.com
URL de la Página de Ayuda https://help.botsentinel.com
URL de la Página de Política de Privacidad https://botsentinel.com/privacy-policy
Idiomas Soportados 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"
    ]
}