Bot Sentinel

Automatically identify inauthentic accounts and toxic Twitter trolls.

O que é Bot Sentinel?

Bot Sentinel é uma extensão do Chrome desenvolvida por https://botsentinel.com, e sua principal característica é "Automatically identify inauthentic accounts and toxic Twitter trolls.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Bot Sentinel

Baixe arquivos de extensão Bot Sentinel no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Bot Sentinel Bot Sentinel
ID eadmnplpcakhnmjbaioeholpakbknhgc
URL Oficial https://chromewebstore.google.com/detail/bot-sentinel/eadmnplpcakhnmjbaioeholpakbknhgc
Descrição Automatically identify inauthentic accounts and toxic Twitter trolls.
Tamanho do Arquivo 174 KB
Contagem de Instalações 24,558
Versão Atual 2.1.5
Última Atualização 2022-03-29
Data de Publicação 2020-07-04
Classificação 3.63/5 Total de 124 Avaliações
Desenvolvedor https://botsentinel.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://botsentinel.com
URL da Página de Ajuda https://help.botsentinel.com
URL da Página de Política de Privacidade https://botsentinel.com/privacy-policy
Idiomas Suportados 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"
    ]
}