Twitch Follower Count
Configurable Chrome extension that shows follower count when in a twitch channel page.
Wat is Twitch Follower Count?
Twitch Follower Count is een Chrome-extensie ontwikkeld door aranciro, en de belangrijkste functie is "Configurable Chrome extension that shows follower count when in a twitch channel page.".
Extensie Screenshots
Download het CRX-bestand van de extensie Twitch Follower Count
Download Twitch Follower Count-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Puts the follower count next to the channel name on Twitch.
Basisinformatie over de Extensie
Naam | Twitch Follower Count |
ID | phpdilphbfgmibgdegclmliinkddhloe |
Officiële URL | https://chromewebstore.google.com/detail/twitch-follower-count/phpdilphbfgmibgdegclmliinkddhloe |
Beschrijving | Configurable Chrome extension that shows follower count when in a twitch channel page. |
Bestandsgrootte | 81.73 KB |
Aantal Installaties | 41 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2021-06-09 |
Publicatiedatum | 2021-06-08 |
Ontwikkelaar | aranciro |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/aranciro/Twitch-Follower-Count-Chrome |
Help Pagina-URL | https://github.com/aranciro/Twitch-Follower-Count-Chrome/issues |
Ondersteunde Talen | 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 } |