Bot Sentinel
Automatically identify inauthentic accounts and toxic Twitter trolls.
Что такое Bot Sentinel?
Bot Sentinel - это расширение Chrome, разработанное https://botsentinel.com, и его основная функция - "Automatically identify inauthentic accounts and toxic Twitter trolls.".
Снимки экрана расширения
Скачать файл CRX расширения Bot Sentinel
Скачайте файлы расширений 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 |
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" ] } |