Nextube - The missing next button
Next button for YouTube
¿Qué es Nextube - The missing next button?
Nextube - The missing next button es una extensión de Chrome desarrollada por Nadav, y su función principal es "Next button for YouTube".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Nextube - The missing next button
Descarga archivos de extensión Nextube - The missing next button 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
Nextube adds a YouTube next button in your browser windows! No more searching for the YouTube tab just to change the current song, with Nextube, just press the next icon and YouTube will play the next available song. Notes: - Please refresh your YouTube tabs after installing Nextube - Nextube will only control the first playing YouTube tab so you can safely keep other YouTube tabs/windows open when not playing.
Información Básica de la Extensión
Nombre | Nextube - The missing next button |
ID | kefiabkknppcjbbimoijcjbcehlcmcco |
URL Oficial | https://chromewebstore.google.com/detail/nextube-the-missing-next/kefiabkknppcjbbimoijcjbcehlcmcco |
Descripción | Next button for YouTube |
Tamaño del Archivo | 11.39 KB |
Cantidad de Instalaciones | 175 |
Versión Actual | 0.9.3 |
Última Actualización | 2016-03-06 |
Fecha de Publicación | 2016-03-06 |
Calificación | 4.82/5 Total de 11 Calificaciones |
Desarrollador | Nadav |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Nextube - The missing next button", "short_name": "Nextube", "version": "0.9.3", "manifest_version": 2, "description": "Next button for YouTube", "icons": { "16": "icons\/yn16.png", "48": "icons\/yn48.png", "128": "icons\/yn128.png" }, "background": { "page": "src\/bg\/background.html", "persistent": true }, "browser_action": { "default_icon": { "19": "icons\/yn19.png", "38": "icons\/yn72.png" }, "default_title": "Nextube" }, "commands": { "next_song": { "suggested_key": { "default": "Ctrl+N", "mac": "MacCtrl+N" }, "description": "Play Next" }, "pause": { "suggested_key": { "default": "Ctrl+P", "mac": "MacCtrl+P" }, "description": "Play\/Pause" } }, "permissions": [ "tabs", "contextMenus" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |