Get HLS from Youtbe
Retrieves the HLS URL from live Youtube streams.
¿Qué es Get HLS from Youtbe?
Get HLS from Youtbe es una extensión de Chrome desarrollada por jwennis, y su función principal es "Retrieves the HLS URL from live Youtube streams.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Get HLS from Youtbe
Descarga archivos de extensión Get HLS from Youtbe 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
A simple chrome extension to retrieve the HLS URL for live Youtube streams. This is an open source project.
Información Básica de la Extensión
Nombre | |
ID | dhjnjclmedbgdbmipdmdmoejnadcjnja |
URL Oficial | https://chrome.google.com/webstore/detail/get-hls-from-youtbe/dhjnjclmedbgdbmipdmdmoejnadcjnja |
Descripción | Retrieves the HLS URL from live Youtube streams. |
Tamaño del Archivo | 789 KB |
Cantidad de Instalaciones | 1,000 |
Versión Actual | 1.0 |
Última Actualización | 2016-12-21 |
Fecha de Publicación | 2016-12-21 |
Calificación | 3.00/5 Total de 8 Calificaciones |
Desarrollador | jwennis |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/jwennis/gethlsfromyoutube |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Get HLS from Youtbe", "version": "1.0", "description": "Retrieves the HLS URL from live Youtube streams.", "icons": { "16": "images\/icon\/24.png", "48": "images\/icon\/48.png", "128": "images\/icon\/128.png" }, "permissions": [ "declarativeContent", "background", "tabs", "clipboardRead", "clipboardWrite" ], "page_action": { "default_icon": { "16": "images\/icon\/24.png", "24": "images\/icon\/24.png", "32": "images\/icon\/48.png" }, "default_title": "Get HLS", "default_popup": "popup.html" }, "background": { "scripts": [ "scripts\/event.js" ], "persistent": false }, "web_accessible_resources": [ "images\/*", "scripts\/*", "styles\/*", "https:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*" ], "js": [ "scripts\/jquery-3.1.1.min.js", "scripts\/content.js" ], "run_at": "document_end" } ] } |