Twitch Follower Count
Configurable Chrome extension that shows follower count when in a twitch channel page.
Hvad er Twitch Follower Count?
Twitch Follower Count er en Chrome-udvidelse udviklet af aranciro, og dens hovedfunktion er "Configurable Chrome extension that shows follower count when in a twitch channel page.".
Udvidelsesskærmbilleder
Download Twitch Follower Count-udvidelses-CRX-fil
Download Twitch Follower Count-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Puts the follower count next to the channel name on Twitch.
Grundlæggende oplysninger om udvidelsen
Navn | Twitch Follower Count |
ID | phpdilphbfgmibgdegclmliinkddhloe |
Officiel URL | https://chromewebstore.google.com/detail/twitch-follower-count/phpdilphbfgmibgdegclmliinkddhloe |
Beskrivelse | Configurable Chrome extension that shows follower count when in a twitch channel page. |
Filstørrelse | 81.73 KB |
Antal Installationer | 41 |
Nuværende Version | 1.0.0 |
Senest Opdateret | 2021-06-09 |
Udgivelsesdato | 2021-06-08 |
Udvikler | aranciro |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/aranciro/Twitch-Follower-Count-Chrome |
Hjælpeside-URL | https://github.com/aranciro/Twitch-Follower-Count-Chrome/issues |
Understøttede Sprog | 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 } |