Twitch Follower Count

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

Twitch Follower Count란 무엇입니까?

Twitch Follower Count은(는) aranciro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Configurable Chrome extension that shows follower count when in a twitch channel page."입니다.

확장 프로그램 스크린샷

screenshot

Twitch Follower Count 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 URL 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
}