Twitch Follower Count

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

Apa itu Twitch Follower Count?

Twitch Follower Count adalah ekstensi Chrome yang dikembangkan oleh aranciro, dan fitur utamanya adalah "Configurable Chrome extension that shows follower count when in a twitch channel page.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Twitch Follower Count

Unduh file ekstensi Twitch Follower Count dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Twitch Follower Count Twitch Follower Count
ID phpdilphbfgmibgdegclmliinkddhloe
URL Resmi https://chromewebstore.google.com/detail/twitch-follower-count/phpdilphbfgmibgdegclmliinkddhloe
Deskripsi Configurable Chrome extension that shows follower count when in a twitch channel page.
Ukuran File 81.73 KB
Jumlah Instalasi 41
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2021-06-09
Tanggal Publikasi 2021-06-08
Pengembang aranciro
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/aranciro/Twitch-Follower-Count-Chrome
URL Halaman Bantuan https://github.com/aranciro/Twitch-Follower-Count-Chrome/issues
Bahasa yang Didukung 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
}