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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Using the Twitch API for a more Compact and Quick view of your Following, Top Streams/Games."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitch GO एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}