Twitter Score Calculator
Chrome extension which scores twitter accounts based on engagement, activeness and follower following ratios
Was ist Twitter Score Calculator?
Twitter Score Calculator ist eine Chrome-Erweiterung, die von Yuki Eliot entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension which scores twitter accounts based on engagement, activeness and follower following ratios".
Erweiterungsscreenshots
Twitter Score Calculator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Twitter Score Calculator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Twitter Score Calculator |
ID | eeimcokiannckggjjfmljjooimjegbfl |
Offizielle URL | https://chromewebstore.google.com/detail/twitter-score-calculator/eeimcokiannckggjjfmljjooimjegbfl |
Beschreibung | Chrome extension which scores twitter accounts based on engagement, activeness and follower following ratios |
Dateigröße | 109 KB |
Installationsanzahl | 43 |
Aktuelle Version | 1.0.3 |
Letztes Update | 2024-01-08 |
Veröffentlichungsdatum | 2024-01-05 |
Bewertung | 5.00/5 Insgesamt 25 Bewertungen |
Entwickler | Yuki Eliot |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://twitter.com/yuki__bitcoin |
URL der Datenschutzrichtlinien-Seite | https://telegra.ph/Twitter-Score-Calculator-Privacy-Policy-01-08 |
Unterstützte Sprachen | 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" ] } |