Get HLS from Youtbe
Retrieves the HLS URL from live Youtube streams.
Что такое Get HLS from Youtbe?
Get HLS from Youtbe - это расширение Chrome, разработанное jwennis, и его основная функция - "Retrieves the HLS URL from live Youtube streams.".
Снимки экрана расширения
Скачать файл CRX расширения Get HLS from Youtbe
Скачайте файлы расширений Get HLS from Youtbe в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A simple chrome extension to retrieve the HLS URL for live Youtube streams. This is an open source project.
Основная информация о расширении
Название | |
ID | dhjnjclmedbgdbmipdmdmoejnadcjnja |
Официальный URL | https://chrome.google.com/webstore/detail/get-hls-from-youtbe/dhjnjclmedbgdbmipdmdmoejnadcjnja |
Описание | Retrieves the HLS URL from live Youtube streams. |
Размер файла | 789 KB |
Количество установок | 1,000 |
Текущая Версия | 1.0 |
Последнее Обновление | 2016-12-21 |
Дата публикации | 2016-12-21 |
Рейтинг | 3.00/5 Всего 8 оценок |
Разработчик | jwennis |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/jwennis/gethlsfromyoutube |
Поддерживаемые языки | 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" } ] } |