Twitch Follower Count

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

ما هو Twitch Follower Count؟

Twitch Follower Count هو إضافة Chrome تم تطويرها بواسطة aranciro، والميزة الرئيسية لها هي "Configurable Chrome extension that shows follower count when in a twitch channel page.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Twitch Follower Count

قم بتنزيل ملفات الامتداد Twitch Follower Count بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Twitch Follower Count Twitch Follower Count
ID phpdilphbfgmibgdegclmliinkddhloe
عنوان URL الرسمي https://chromewebstore.google.com/detail/twitch-follower-count/phpdilphbfgmibgdegclmliinkddhloe
الوصف Configurable Chrome extension that shows follower count when in a twitch channel page.
حجم الملف 81.73 KB
عدد التثبيتات 41
النسخة الحالية 1.0.0
آخر تحديث 2021-06-09
تاريخ النشر 2021-06-08
المطور aranciro
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/aranciro/Twitch-Follower-Count-Chrome
عنوان صفحة المساعدة https://github.com/aranciro/Twitch-Follower-Count-Chrome/issues
اللغات المدعومة 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
}