Twitch Peak
Keeps the current tab set to the largest stream for any given game on Twitch!
¿Qué es Twitch Peak?
Twitch Peak es una extensión de Chrome desarrollada por noahwillcrow, y su función principal es "Keeps the current tab set to the largest stream for any given game on Twitch!".
Descargar Archivo CRX de la Extensión Twitch Peak
Descarga archivos de extensión Twitch Peak 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
Keep your eyes glued to only the top Twitch stream of any given game! Instructions: Just install this extension, click the icon in the Chrome menu, type in the name of your game, and click "Start Watching"! Source code is available on GitHub!
Información Básica de la Extensión
Nombre | Twitch Peak |
ID | lmdldooiahghimedndlabgjfkddemjdj |
URL Oficial | https://chromewebstore.google.com/detail/twitch-peak/lmdldooiahghimedndlabgjfkddemjdj |
Descripción | Keeps the current tab set to the largest stream for any given game on Twitch! |
Tamaño del Archivo | 120 KB |
Cantidad de Instalaciones | 23 |
Versión Actual | 1.0.3 |
Última Actualización | 2017-07-25 |
Fecha de Publicación | 2017-07-25 |
Desarrollador | noahwillcrow |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/noahwillcrow/TwitchPeak |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Peak", "short_name": "TwitchPeak", "version": "1.0.3", "description": "Keeps the current tab set to the largest stream for any given game on Twitch!", "icons": { "32": "icon-32.png", "128": "icon-128.png" }, "permissions": [ "tabs", "https:\/\/api.twitch.tv\/kraken\/streams" ], "browser_action": { "default_title": "", "default_icon": "icon-32.png", "default_popup": "popup.html" }, "background": { "scripts": [ "jquery-3.2.1.min.js", "background.js" ], "persistent": true } } |