Twitch Follower Count
Configurable Chrome extension that shows follower count when in a twitch channel page.
Qu'est-ce que Twitch Follower Count ?
Twitch Follower Count est une extension Chrome développée par aranciro, et sa fonction principale est "Configurable Chrome extension that shows follower count when in a twitch channel page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitch Follower Count
Téléchargez les fichiers d'extension Twitch Follower Count au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Puts the follower count next to the channel name on Twitch.
Informations de Base sur l'Extension
Nom | Twitch Follower Count |
ID | phpdilphbfgmibgdegclmliinkddhloe |
URL Officiel | https://chromewebstore.google.com/detail/twitch-follower-count/phpdilphbfgmibgdegclmliinkddhloe |
Description | Configurable Chrome extension that shows follower count when in a twitch channel page. |
Taille du Fichier | 81.73 KB |
Nombre d'Installations | 41 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2021-06-09 |
Date de Publication | 2021-06-08 |
Développeur | aranciro |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/aranciro/Twitch-Follower-Count-Chrome |
URL de la Page d'Aide | https://github.com/aranciro/Twitch-Follower-Count-Chrome/issues |
Langues Prises en Charge | 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 } |