Twitter Score Calculator

Chrome extension which scores twitter accounts based on engagement, activeness and follower following ratios

Twitter Score Calculator란 무엇입니까?

Twitter Score Calculator은(는) Yuki Eliot에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension which scores twitter accounts based on engagement, activeness and follower following ratios"입니다.

확장 프로그램 스크린샷

screenshot

Twitter Score Calculator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Introducing the X-Score Checker (Twitter): Uncover the Health of X Accounts in a Flash

Make smarter decisions on X with this easy-to-use Chrome extension.

Quickly assess X accounts based on three key metrics:

- Follow Ratio: See how balanced an account's following is to gain insights into potential bot activity or unnatural growth.
- Engagement: Discover how actively followers interact with an account's content, indicating its relevance and influence.
- Activity: Evaluate how often an account posts and engages with others, revealing its level of dedication and presence on X.

Benefits:

- Identify High-Quality Accounts: Find genuine, influential accounts that are worth your time and attention.
- Spot Potential Spam or Bots: Protect yourself from fake followers and misleading engagement.
- Make Informed Follow Decisions: Choose accounts that align with your interests and goals, based on their activity and engagement levels.
- Streamline Your X Experience: Get instant insights without leaving your browser, saving you time and effort.                    

확장 프로그램 기본 정보

이름 Twitter Score Calculator Twitter Score Calculator
ID eeimcokiannckggjjfmljjooimjegbfl
공식 URL https://chromewebstore.google.com/detail/twitter-score-calculator/eeimcokiannckggjjfmljjooimjegbfl
설명 Chrome extension which scores twitter accounts based on engagement, activeness and follower following ratios
파일 크기 109 KB
설치 횟수 43
현재 버전 1.0.3
최근 업데이트 2024-01-08
출시 날짜 2024-01-05
평점 5.00/5 총 25 개의 평점
개발자 Yuki Eliot
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://twitter.com/yuki__bitcoin
개인정보 보호 정책 페이지 URL https://telegra.ph/Twitter-Score-Calculator-Privacy-Policy-01-08
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Chrome extension which scores twitter accounts based on engagement, activeness and follower following ratios",
    "version": "1.0.3",
    "manifest_version": 3,
    "name": "Twitter Score Calculator",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-48.png"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-48.png",
                "icon-16.png"
            ],
            "matches": []
        }
    ],
    "permissions": [
        "activeTab"
    ]
}