Twitch Follower Count
Configurable Chrome extension that shows follower count when in a twitch channel page.
Cos'è Twitch Follower Count?
Twitch Follower Count è un'estensione di Chrome sviluppata da aranciro, e la sua funzione principale è "Configurable Chrome extension that shows follower count when in a twitch channel page.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitch Follower Count
Scarica i file di estensione Twitch Follower Count in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Puts the follower count next to the channel name on Twitch.
Informazioni di Base sull'Estensione
Nome | Twitch Follower Count |
ID | phpdilphbfgmibgdegclmliinkddhloe |
URL Ufficiale | https://chromewebstore.google.com/detail/twitch-follower-count/phpdilphbfgmibgdegclmliinkddhloe |
Descrizione | Configurable Chrome extension that shows follower count when in a twitch channel page. |
Dimensione del File | 81.73 KB |
Conteggio Installazioni | 41 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2021-06-09 |
Data di Pubblicazione | 2021-06-08 |
Sviluppatore | aranciro |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/aranciro/Twitch-Follower-Count-Chrome |
URL della Pagina di Aiuto | https://github.com/aranciro/Twitch-Follower-Count-Chrome/issues |
Lingue Supportate | 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 } |