Twitch Follower Count

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

O que é Twitch Follower Count?

Twitch Follower Count é uma extensão do Chrome desenvolvida por aranciro, e sua principal característica é "Configurable Chrome extension that shows follower count when in a twitch channel page.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Twitch Follower Count

Baixe arquivos de extensão Twitch Follower Count no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Twitch Follower Count Twitch Follower Count
ID phpdilphbfgmibgdegclmliinkddhloe
URL Oficial https://chromewebstore.google.com/detail/twitch-follower-count/phpdilphbfgmibgdegclmliinkddhloe
Descrição Configurable Chrome extension that shows follower count when in a twitch channel page.
Tamanho do Arquivo 81.73 KB
Contagem de Instalações 41
Versão Atual 1.0.0
Última Atualização 2021-06-09
Data de Publicação 2021-06-08
Desenvolvedor aranciro
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/aranciro/Twitch-Follower-Count-Chrome
URL da Página de Ajuda https://github.com/aranciro/Twitch-Follower-Count-Chrome/issues
Idiomas Suportados 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
}