Twitch Live Extension

A browser extension that lists your live followed streamers and sends notifications when they start a new stream

Was ist Twitch Live Extension?

Twitch Live Extension ist eine Chrome-Erweiterung, die von Pedro Silva entwickelt wurde, und ihr Hauptmerkmal ist "A browser extension that lists your live followed streamers and sends notifications when they start a new stream".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Twitch Live Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Twitch Live Extension-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

                        To start using it, open it, log in with your Twitch account so that the extension has access only to your public information and your follows, and, every time you click on the extension icon,
you will see the streamers that you follow that are live.

This extension supports *Just Went Live* notifications. If you want to enable them, open the extension, go to *Settings* and enable the Just Went Live notifications.

There's also a button to log out from your Twitch account.

Special thanks to everyone that helped test this extension: https://github.com/PedroS11/twitch-live-extension#contribution                    

Grundlegende Informationen zur Erweiterung

Name Twitch Live Extension Twitch Live Extension
ID nlnfdlcbnpafokhpjfffmoobbejpedgj
Offizielle URL https://chromewebstore.google.com/detail/twitch-live-extension/nlnfdlcbnpafokhpjfffmoobbejpedgj
Beschreibung A browser extension that lists your live followed streamers and sends notifications when they start a new stream
Dateigröße 143 KB
Installationsanzahl 10,126
Aktuelle Version 4.2.1
Letztes Update 2023-09-27
Veröffentlichungsdatum 2020-10-13
Bewertung 4.49/5 Insgesamt 59 Bewertungen
Entwickler Pedro Silva
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/PedroS11/twitch-live-extension
Hilfeseite URL https://github.com/PedroS11/twitch-live-extension/issues
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch Live Extension",
    "description": "A browser extension that lists your live followed streamers and sends notifications when they start a new stream",
    "version": "4.2.1",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "Twitch Live Extension",
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/id.twitch.tv\/oauth2\/*",
        "https:\/\/api.twitch.tv\/helix\/*"
    ],
    "permissions": [
        "identity",
        "notifications",
        "alarms",
        "storage",
        "idle"
    ]
}