Twitch Live Monitor

Twitch TV extension to show the priority active favorite channels of as a notification to you.

Was ist Twitch Live Monitor?

Twitch Live Monitor ist eine Chrome-Erweiterung, die von spddl entwickelt wurde, und ihr Hauptmerkmal ist "Twitch TV extension to show the priority active favorite channels of as a notification to you.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Twitch Live Monitor-Erweiterungs-CRX-Datei herunterladen

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

                        The idea to get notified about new Twitch channels comes from @Mike Chambers https://chrome.google.com/webstore/detail/iiljidcefnbhbpamageahhblhbbhhopm

Twitch live Monitor also offers the possibility to be notified in real time when one of your 50 favorite streamers goes online on Twitch, everything about it is queried in a 2min interval. This is possible with the PubSub interface from Twitch (https://dev.twitch.tv/docs/pubsub)

In addition, the style is in material design with dark mode so that it fits perfectly into the chrome.                    

Grundlegende Informationen zur Erweiterung

Name Twitch Live Monitor Twitch Live Monitor
ID geckecbipnimmcefppeckcggceikjmjj
Offizielle URL https://chromewebstore.google.com/detail/twitch-live-monitor/geckecbipnimmcefppeckcggceikjmjj
Beschreibung Twitch TV extension to show the priority active favorite channels of as a notification to you.
Dateigröße 194 KB
Installationsanzahl 24
Aktuelle Version 0.0.35
Letztes Update 2021-03-17
Veröffentlichungsdatum 2020-07-31
Entwickler spddl
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/spddl/Twitch-Live-Monitor
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Twitch TV extension to show the priority active favorite channels of as a notification to you.",
    "version": "0.0.35",
    "name": "Twitch Live Monitor",
    "short_name": "Twitch Live Monitor",
    "homepage_url": "https:\/\/github.com\/spddl",
    "options_page": "options.html",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "bw128px.png"
    },
    "icons": {
        "128": "tw128px.png"
    },
    "web_accessible_resources": [
        "tw128px.png",
        "bw128px.png"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "https:\/\/*.twitch.tv\/",
        "https:\/\/twitch.tv\/",
        "tabs",
        "storage",
        "notifications"
    ]
}