Bot Sentinel

Automatically identify inauthentic accounts and toxic Twitter trolls.

Co to jest Bot Sentinel?

Bot Sentinel to rozszerzenie Chrome opracowane przez https://botsentinel.com, a jego główną funkcją jest „Automatically identify inauthentic accounts and toxic Twitter trolls.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Bot Sentinel

Pobierz pliki rozszerzeń Bot Sentinel w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Bot Sentinel Bot Sentinel
ID eadmnplpcakhnmjbaioeholpakbknhgc
Oficjalny URL https://chromewebstore.google.com/detail/bot-sentinel/eadmnplpcakhnmjbaioeholpakbknhgc
Opis Automatically identify inauthentic accounts and toxic Twitter trolls.
Rozmiar pliku 174 KB
Liczba instalacji 24,558
Aktualna Wersja 2.1.5
Ostatnia Aktualizacja 2022-03-29
Data Publikacji 2020-07-04
Ocena 3.63/5 Łącznie 124 Oceny
Deweloper https://botsentinel.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://botsentinel.com
Adres URL Strony Pomocy https://help.botsentinel.com
Adres URL Strony Polityki Prywatności https://botsentinel.com/privacy-policy
Obsługiwane Języki 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"
    ]
}