Twitch GO

Using the Twitch API for a more Compact and Quick view of your Following, Top Streams/Games.

Twitch GO란 무엇입니까?

Twitch GO은(는) https://ghostir.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Using the Twitch API for a more Compact and Quick view of your Following, Top Streams/Games."입니다.

확장 프로그램 스크린샷

screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        A quick and easy way to access several of the Twitch Services, such as your Following, Top Games and Top Streams.

Features
• Follower List
• Top Games
• Top Streams
• Custom Search of the Streams/Games.
• Dark and Light themes within the Settings.
• In addition to your Following List, you're able to Favorite a Streamer, showing him at the top of your Following List.
• Want to know when your favorite streamer has gone live? Just turn on Notifications and click the Bell Icon.


When Twitch switched their API Version from Kraken to Helix, many of the existing extensions that did something similar were outdated and no longer worked. I decided that I'd create a nice looking and functional extension to fill this void, I strived to create a good looking, feature rich extension that'll provide users with a straight forward and easy way to keep track of their Twitch followers others areas of the service.                    

확장 프로그램 기본 정보

이름 Twitch GO Twitch GO
ID lbjeogibekpoopegkikmbfidalcamigj
공식 URL https://chromewebstore.google.com/detail/twitch-go/lbjeogibekpoopegkikmbfidalcamigj
설명 Using the Twitch API for a more Compact and Quick view of your Following, Top Streams/Games.
파일 크기 1.19 MB
설치 횟수 76
현재 버전 2.5.0
최근 업데이트 2023-12-14
출시 날짜 2022-04-20
평점 4.33/5 총 3 개의 평점
개발자 https://ghostir.net
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://ghostir.net/twitch
도움말 페이지 URL https://ghostir.net/Twitch/Feedback
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch GO",
    "description": "Using the Twitch API for a more Compact and Quick view of your Following, Top Streams\/Games.",
    "version": "2.5.0",
    "manifest_version": 3,
    "icons": {
        "16": ".\/img\/obj-16x16.png",
        "32": ".\/img\/obj-32x32.png",
        "48": ".\/img\/obj-48x48.png",
        "128": ".\/img\/obj-128x128.png"
    },
    "action": {
        "default_popup": "main.html"
    },
    "background": {
        "service_worker": "notification.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "settings.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/localhost:7191\/*",
        "https:\/\/ghostir.net\/*",
        "https:\/\/api.twitch.tv\/helix\/*"
    ],
    "permissions": [
        "identity",
        "storage",
        "notifications",
        "alarms",
        "tabs"
    ]
}