Twitch GO

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

Qu'est-ce que Twitch GO ?

Twitch GO est une extension Chrome développée par https://ghostir.net, et sa fonction principale est "Using the Twitch API for a more Compact and Quick view of your Following, Top Streams/Games.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Twitch GO

Téléchargez les fichiers d'extension Twitch GO au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Twitch GO Twitch GO
ID lbjeogibekpoopegkikmbfidalcamigj
URL Officiel https://chromewebstore.google.com/detail/twitch-go/lbjeogibekpoopegkikmbfidalcamigj
Description Using the Twitch API for a more Compact and Quick view of your Following, Top Streams/Games.
Taille du Fichier 1.19 MB
Nombre d'Installations 76
Version Actuelle 2.5.0
Dernière Mise à Jour 2023-12-14
Date de Publication 2022-04-20
Évaluation 4.33/5 Total 3 Évaluations
Développeur https://ghostir.net
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://ghostir.net/twitch
URL de la Page d'Aide https://ghostir.net/Twitch/Feedback
Langues Prises en Charge 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"
    ]
}