TubeLister
Generate a YouTube playlist from your opened tabs.
¿Qué es TubeLister?
TubeLister es una extensión de Chrome desarrollada por stelabouras, y su función principal es "Generate a YouTube playlist from your opened tabs.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión TubeLister
Descarga archivos de extensión TubeLister 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
TubeLister collects all your open YouTube video tabs into one playlist tab to save memory and hassle! The extension also extracts videos from existing Untitled playlists (that may have been generated before with the extension) and adds them to the list. It also does not add duplicate videos and adds the focused Youtube video as first on the list. This extension is open-source: https://github.com/stelabouras/TubeLister TubeLister Chrome Extension is not affiliated with Google. YouTube is a trademark of Google Inc.
Información Básica de la Extensión
Nombre | TubeLister |
ID | lekljbhoijkojpbdgdbbmonjddaaoibh |
URL Oficial | https://chromewebstore.google.com/detail/tubelister/lekljbhoijkojpbdgdbbmonjddaaoibh |
Descripción | Generate a YouTube playlist from your opened tabs. |
Tamaño del Archivo | 15.22 KB |
Cantidad de Instalaciones | 1,277 |
Versión Actual | 3.0 |
Última Actualización | 2022-11-04 |
Fecha de Publicación | 2017-10-26 |
Calificación | 4.41/5 Total de 22 Calificaciones |
Desarrollador | stelabouras |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.stelabouras.com/projects/tubelister/ |
URL de la Página de Política de Privacidad | https://www.linkpack.io/terms |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Stelios Petrakis", "background": { "service_worker": "js\/events.js" }, "action": { "default_icon": { "19": "icons\/icon-19.png", "38": "icons\/icon-76.png" }, "default_title": "TubeLister" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+T" } } }, "description": "Generate a YouTube playlist from your opened tabs.", "homepage_url": "https:\/\/github.com\/stelabouras\/TubeLister", "icons": { "16": "icons\/icon-16.png", "256": "icons\/icon-256.png" }, "web_accessible_resources": [ { "resources": [ "js\/content.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ], "manifest_version": 3, "name": "TubeLister", "permissions": [ "tabs", "scripting" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "version": "3.0" } |