Get HLS from Youtbe
Retrieves the HLS URL from live Youtube streams.
Get HLS from Youtbe là gì?
Get HLS from Youtbe là một tiện ích mở rộng Chrome được phát triển bởi jwennis, và tính năng chính của nó là "Retrieves the HLS URL from live Youtube streams.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Get HLS from Youtbe
Tải xuống các tệp mở rộng Get HLS from Youtbe dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
A simple chrome extension to retrieve the HLS URL for live Youtube streams. This is an open source project.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | dhjnjclmedbgdbmipdmdmoejnadcjnja |
URL Chính Thức | https://chrome.google.com/webstore/detail/get-hls-from-youtbe/dhjnjclmedbgdbmipdmdmoejnadcjnja |
Mô tả | Retrieves the HLS URL from live Youtube streams. |
Kích Thước Tệp | 789 KB |
Số Lần Cài Đặt | 1,000 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2016-12-21 |
Ngày Phát Hành | 2016-12-21 |
Đánh Giá | 3.00/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | jwennis |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/jwennis/gethlsfromyoutube |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |