Get HLS from Youtbe
Retrieves the HLS URL from live Youtube streams.
O que é Get HLS from Youtbe?
Get HLS from Youtbe é uma extensão do Chrome desenvolvida por jwennis, e sua principal característica é "Retrieves the HLS URL from live Youtube streams.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Get HLS from Youtbe
Baixe arquivos de extensão Get HLS from Youtbe no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
A simple chrome extension to retrieve the HLS URL for live Youtube streams. This is an open source project.
Informações Básicas da Extensão
Nome | |
ID | dhjnjclmedbgdbmipdmdmoejnadcjnja |
URL Oficial | https://chrome.google.com/webstore/detail/get-hls-from-youtbe/dhjnjclmedbgdbmipdmdmoejnadcjnja |
Descrição | Retrieves the HLS URL from live Youtube streams. |
Tamanho do Arquivo | 789 KB |
Contagem de Instalações | 1,000 |
Versão Atual | 1.0 |
Última Atualização | 2016-12-21 |
Data de Publicação | 2016-12-21 |
Classificação | 3.00/5 Total de 8 Avaliações |
Desenvolvedor | jwennis |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/jwennis/gethlsfromyoutube |
Idiomas Suportados | 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" } ] } |