Twitch GO

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

O que é Twitch GO?

Twitch GO é uma extensão do Chrome desenvolvida por https://ghostir.net, e sua principal característica é "Using the Twitch API for a more Compact and Quick view of your Following, Top Streams/Games.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Twitch GO

Baixe arquivos de extensão Twitch GO no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Twitch GO Twitch GO
ID lbjeogibekpoopegkikmbfidalcamigj
URL Oficial https://chromewebstore.google.com/detail/twitch-go/lbjeogibekpoopegkikmbfidalcamigj
Descrição Using the Twitch API for a more Compact and Quick view of your Following, Top Streams/Games.
Tamanho do Arquivo 1.19 MB
Contagem de Instalações 76
Versão Atual 2.5.0
Última Atualização 2023-12-14
Data de Publicação 2022-04-20
Classificação 4.33/5 Total de 3 Avaliações
Desenvolvedor https://ghostir.net
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://ghostir.net/twitch
URL da Página de Ajuda https://ghostir.net/Twitch/Feedback
Idiomas Suportados 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"
    ]
}