BotSight

An inline, real-time Twitter annotator which computes, for each user in your Twitter feed, the likelihood they are a bot.

BotSight란 무엇입니까?

BotSight은(는) http://download.botsight.nlok-research.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An inline, real-time Twitter annotator which computes, for each user in your Twitter feed, the likelihood they are a bot."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

BotSight 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 BotSight BotSight
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'"
}