Twitch Follower Count

Configurable Chrome extension that shows follower count when in a twitch channel page.

Co je Twitch Follower Count?

Twitch Follower Count je rozšíření Chrome vyvinuté aranciro, a jeho hlavní funkcí je „Configurable Chrome extension that shows follower count when in a twitch channel page.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Twitch Follower Count

Stáhněte si soubory rozšíření Twitch Follower Count ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Puts the follower count next to the channel name on Twitch.                    

Základní Informace o Rozšíření

Název Twitch Follower Count Twitch Follower Count
ID phpdilphbfgmibgdegclmliinkddhloe
Oficiální URL https://chromewebstore.google.com/detail/twitch-follower-count/phpdilphbfgmibgdegclmliinkddhloe
Popis Configurable Chrome extension that shows follower count when in a twitch channel page.
Velikost souboru 81.73 KB
Počet instalací 41
Aktuální Verze 1.0.0
Poslední Aktualizace 2021-06-09
Datum Vydání 2021-06-08
Vývojář aranciro
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/aranciro/Twitch-Follower-Count-Chrome
URL Stránky Nápovědy https://github.com/aranciro/Twitch-Follower-Count-Chrome/issues
Podporované Jazyky 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
}