BotSight
An inline, real-time Twitter annotator which computes, for each user in your Twitter feed, the likelihood they are a bot.
Τι είναι το BotSight;
Το BotSight είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://download.botsight.nlok-research.me, και η κύρια λειτουργία του είναι "An inline, real-time Twitter annotator which computes, for each user in your Twitter feed, the likelihood they are a bot.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης BotSight
Λήψη αρχείων επέκτασης BotSight σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
BotSight allows you to browse Twitter while annotating each handle with a bot-probability score. This works across most of Twitter's views including Timeline, Search, Profile, Follower, and clicking on an individual Tweet. The scores are generated by our state-of-the-art classifier in real-time. They are then placed directly onto the page, so you can tell if you're interacting with a real person or a bot. In addition to annotating the Tweeter, we also scan the contents of the Tweet. For instance, BotSight also annotates mentioned handles in the Tweet's body and the handles in replies. Retweets, quoted tweets, followers, and those you follow are also annotated. While we do our best to make sure BotSight is accurate, it is still in active development. People may be misclassified as bots or vice-versa.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | kahiiipphdmmkkamddaiiddmidmhbbil |
Επίσημο URL | https://chrome.google.com/webstore/detail/botsight/kahiiipphdmmkkamddaiiddmidmhbbil |
Περιγραφή | An inline, real-time Twitter annotator which computes, for each user in your Twitter feed, the likelihood they are a bot. |
Μέγεθος Αρχείου | 2.37 MB |
Αριθμός Εγκαταστάσεων | 2,197 |
Τρέχουσα Έκδοση | 1.2.7 |
Τελευταία Ενημέρωση | 2021-01-05 |
Ημερομηνία Δημοσίευσης | 2020-06-15 |
Αξιολόγηση | 3.38/5 Συνολικά 8 Αξιολογήσεις |
Προγραμματιστής | http://download.botsight.nlok-research.me |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://download.botsight.nlok-research.me |
Διεύθυνση URL της Σελίδας Βοήθειας | https://download.botsight.nlok-research.me#faq |
URL της Σελίδας Πολιτικής Απορρήτου | https://www.nortonlifelock.com/us/en/privacy/global-privacy-statement |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "BotSight", "version": "1.2.7", "description": "An inline, real-time Twitter annotator which computes, for each user in your Twitter feed, the likelihood they are a bot.", "icons": { "48": "img\/icons\/Bot_icon48.png", "96": "img\/icons\/Bot_icon96.png", "128": "img\/icons\/Bot_icon128.png", "256": "img\/icons\/Bot_icon256.png", "512": "img\/icons\/Bot_icon512.png" }, "author": "NortonLifeLock Research Group", "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "js": [ "lib\/jquery\/dist\/jquery-3.4.1.min.js", "lib\/popper-core-2.3.3\/popper.min.js", "lib\/tippy-6.1.1\/tippy-bundle.umd.min.js", "js\/content-script.js" ], "css": [ "\/lib\/fontawesome-free-5.12.1-web\/css\/all-chrome.css", "\/lib\/fontawesome-free-5.12.1-web\/css\/all.css", "lib\/tippy-6.1.1\/tippy.css", "\/css\/spm-indicator.css" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "\/lib\/fontawesome-free-5.12.1-web\/webfonts\/*", "\/js\/*.js.map" ], "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "options_ui": { "page": "html\/settings.html" }, "browser_action": { "default_title": "BotSight", "default_icon": "img\/icons\/Bot_icon512.png", "default_popup": "html\/popup.html" }, "permissions": [ "storage", "activeTab" ], "content_security_policy": "script-src 'self'; object-src 'self'; font-src 'self'" } |