Bot Sentinel

Automatically identify inauthentic accounts and toxic Twitter trolls.

什麼是Bot Sentinel?

Bot Sentinel是由https://botsentinel.com開發的Chrome擴展程式,該擴展的主要功能是“Automatically identify inauthentic accounts and toxic Twitter trolls.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

下載Bot Sentinel擴展crx文件

下載Bot Sentinel擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Bot Sentinel Bot Sentinel
ID eadmnplpcakhnmjbaioeholpakbknhgc
官方網址 https://chromewebstore.google.com/detail/bot-sentinel/eadmnplpcakhnmjbaioeholpakbknhgc
簡介 Automatically identify inauthentic accounts and toxic Twitter trolls.
檔案大小 174 KB
安裝次數 24,558
目前版本 2.1.5
更新時間 2022-03-29
上架時間 2020-07-04
評分 3.63/5 共 124 次評分
開發者 https://botsentinel.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://botsentinel.com
說明頁面URL https://help.botsentinel.com
隱私政策頁面URL https://botsentinel.com/privacy-policy
支援的語言 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"
    ]
}