Twitch Notifications
Notifies you when one of the streamers you are following starts streaming.
¿Qué es Twitch Notifications?
Twitch Notifications es una extensión de Chrome desarrollada por mickelus, y su función principal es "Notifies you when one of the streamers you are following starts streaming.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitch Notifications
Descarga archivos de extensión Twitch Notifications en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Twitch Notifications |
ID | inkakioanfdnbbikoenlmmpaomnangkh |
URL Oficial | https://chromewebstore.google.com/detail/twitch-notifications/inkakioanfdnbbikoenlmmpaomnangkh |
Descripción | Notifies you when one of the streamers you are following starts streaming. |
Tamaño del Archivo | 38.46 KB |
Cantidad de Instalaciones | 211 |
Versión Actual | 1.1 |
Última Actualización | 2016-02-10 |
Fecha de Publicación | 2016-02-10 |
Calificación | 2.60/5 Total de 5 Calificaciones |
Desarrollador | mickelus |
Tipo de Pago | free |
Idiomas Soportados | 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 } } |