Twitch Notifications
Notifies you when one of the streamers you are following starts streaming.
Cos'è Twitch Notifications?
Twitch Notifications è un'estensione di Chrome sviluppata da mickelus, e la sua funzione principale è "Notifies you when one of the streamers you are following starts streaming.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitch Notifications
Scarica i file di estensione Twitch Notifications in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
All that you need to do to get started is to put your twitch username in the username field on the options page. A link to the option page can be found under "Tools" > "Extensions" > "Twitch notifications". Clicking a notification will open the stream in a new tab. The source is on github: https://github.com/mickelus/twitchNotifications. Feel free to submit bug reports, feature requests or pull requests.
Informazioni di Base sull'Estensione
Nome | Twitch Notifications |
ID | inkakioanfdnbbikoenlmmpaomnangkh |
URL Ufficiale | https://chromewebstore.google.com/detail/twitch-notifications/inkakioanfdnbbikoenlmmpaomnangkh |
Descrizione | Notifies you when one of the streamers you are following starts streaming. |
Dimensione del File | 38.46 KB |
Conteggio Installazioni | 211 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2016-02-10 |
Data di Pubblicazione | 2016-02-10 |
Valutazione | 2.60/5 Totale 5 Valutazioni |
Sviluppatore | mickelus |
Tipo di Pagamento | free |
Lingue Supportate | en,sv |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "default_locale": "en", "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "version": "1.1", "content_security_policy": "image-src 'self' *:\/\/static-cdn.jtvnw.net\/*; object-src 'self'; script-src 'self'", "permissions": [ "alarms", "storage", "notifications", "cookies", "*:\/\/api.twitch.tv\/*", "*:\/\/static-cdn.jtvnw.net\/*" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "scripts": [ "background.js" ], "persistent": false } } |