Bot Sentinel

Automatically identify inauthentic accounts and toxic Twitter trolls.

Bot Sentinel क्या है?

Bot Sentinel https://botsentinel.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically identify inauthentic accounts and toxic Twitter trolls."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Bot Sentinel एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    ]
}