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" ] } |