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文件

下載Twitch GO擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}