Twitch Game Switch Notify
Bored of your variety streamers current game? This will trigger a chrome notification when they switch game leaving you to view…
Was ist Twitch Game Switch Notify?
Twitch Game Switch Notify ist eine Chrome-Erweiterung, die von Bill Hedworth entwickelt wurde, und ihr Hauptmerkmal ist "Bored of your variety streamers current game? This will trigger a chrome notification when they switch game leaving you to view…".
Erweiterungsscreenshots
Twitch Game Switch Notify-Erweiterungs-CRX-Datei herunterladen
Laden Sie Twitch Game Switch Notify-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
Bored of your variety streamers current game? This will trigger a chrome notification when they switch game leaving you to view someone else or maybe do something more constructive in the mean time. PLEASE NOTE: You will need the twitch stream open in a tab (doesn't need focus) but you do not need the stream playing if you don't want, you can pause the video as the extension just watches for the game title text on this page to change. You can also turn the extension on and off with the toolbar button.
Grundlegende Informationen zur Erweiterung
Name | Twitch Game Switch Notify |
ID | gkomcllbmedmgddnddobdijddjabfcdj |
Offizielle URL | https://chromewebstore.google.com/detail/twitch-game-switch-notify/gkomcllbmedmgddnddobdijddjabfcdj |
Beschreibung | Bored of your variety streamers current game? This will trigger a chrome notification when they switch game leaving you to view… |
Dateigröße | 1.25 MB |
Installationsanzahl | 32 |
Aktuelle Version | 0.1.7 |
Letztes Update | 2018-06-17 |
Veröffentlichungsdatum | 2018-06-17 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Bill Hedworth |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/Bigsy/twitchnotify |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Game Switch Notify", "version": "0.1.7", "browser_action": { "default_icon": { "19": "images\/twitch19gc.png", "38": "images\/twitch38gc.png" } }, "icons": { "16": "images\/twitch16gc.png", "48": "images\/twitch48gc.png", "128": "images\/twitch128goc.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*", "https:\/\/static-cdn.jtvnw.net\/*" ], "js": [ "compiled\/content-script.js" ], "run_at": "document_end" } ], "background": { "page": "background.html", "persistent": false }, "permissions": [ "storage", "notifications" ], "manifest_version": 2 } |