Twitch Follower Count
Configurable Chrome extension that shows follower count when in a twitch channel page.
What is Twitch Follower Count?
Twitch Follower Count is a Chrome extension developed by aranciro, and its main feature is "Configurable Chrome extension that shows follower count when in a twitch channel page.".
Extension Screenshots
Download Twitch Follower Count Extension CRX File
Download Twitch Follower Count extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Puts the follower count next to the channel name on Twitch.
Extension Basic Information
Name | Twitch Follower Count |
ID | phpdilphbfgmibgdegclmliinkddhloe |
Official URL | https://chromewebstore.google.com/detail/twitch-follower-count/phpdilphbfgmibgdegclmliinkddhloe |
Description | Configurable Chrome extension that shows follower count when in a twitch channel page. |
File Size | 81.73 KB |
Installation Count | 41 |
Current Version | 1.0.0 |
Last Updated | 2021-06-09 |
Publish Date | 2021-06-08 |
Developer | aranciro |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/aranciro/Twitch-Follower-Count-Chrome |
Help Page URL | https://github.com/aranciro/Twitch-Follower-Count-Chrome/issues |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Follower Count", "version": "1.0.0", "description": "Configurable Chrome extension that shows follower count when in a twitch channel page.", "icons": { "16": "res\/twitch-follower-count-icon-16x16.png", "32": "res\/twitch-follower-count-icon-32x32.png", "48": "res\/twitch-follower-count-icon-48x48.png", "64": "res\/twitch-follower-count-icon-64x64.png", "128": "res\/twitch-follower-count-icon-128x128.png" }, "options_page": "options\/index.html", "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/*.twitch.tv\/*", "https:\/\/*.twitch.tv\/*" ], "js": [ "twitch-follower-count.user.js" ], "css": [ "twitch-follower-count.css" ] } ], "manifest_version": 3 } |