Twitch GO

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

Was ist Twitch GO?

Twitch GO ist eine Chrome-Erweiterung, die von https://ghostir.net entwickelt wurde, und ihr Hauptmerkmal ist "Using the Twitch API for a more Compact and Quick view of your Following, Top Streams/Games.".

Erweiterungsscreenshots

screenshot

Twitch GO-Erweiterungs-CRX-Datei herunterladen

Laden Sie Twitch GO-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Twitch GO Twitch GO
ID lbjeogibekpoopegkikmbfidalcamigj
Offizielle URL https://chromewebstore.google.com/detail/twitch-go/lbjeogibekpoopegkikmbfidalcamigj
Beschreibung Using the Twitch API for a more Compact and Quick view of your Following, Top Streams/Games.
Dateigröße 1.19 MB
Installationsanzahl 76
Aktuelle Version 2.5.0
Letztes Update 2023-12-14
Veröffentlichungsdatum 2022-04-20
Bewertung 4.33/5 Insgesamt 3 Bewertungen
Entwickler https://ghostir.net
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://ghostir.net/twitch
Hilfeseite URL https://ghostir.net/Twitch/Feedback
Unterstützte Sprachen 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"
    ]
}