Native HLS Playback
Allow the browser to play HLS video urls (m3u8) 'natively'
什麼是Native HLS Playback?
Native HLS Playback是由Gaetan Hervouet開發的Chrome擴展程式,該擴展的主要功能是“Allow the browser to play HLS video urls (m3u8) 'natively'”。
擴展截圖
下載Native HLS Playback擴展crx文件
下載Native HLS Playback擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension is a wrapper around the awesome hlsjs library: https://github.com/video-dev/hls.js Clicking on the extension icon will let you play any m3u8 embedded as a video html element in the current page. New: type m3u8, then tab, then your m3u8 URL to play the URL in the extension. Features: Enable/Disable the url catcher by clicking on the icon. Enable hls.js debug mode in the extension settings. Switch between hls.js 0.14.x, 1.0.x and 1.1.x in the settings. Now supports subtitles! Switch between zoom and native video size in the options. Display timed metadata in the console Default player is now hls.js/1.1.5.
擴展基本資訊
名稱 | Native HLS Playback |
ID | emnphkkblegpebimobpbekeedfgemhof |
官方網址 | https://chromewebstore.google.com/detail/native-hls-playback/emnphkkblegpebimobpbekeedfgemhof |
簡介 | Allow the browser to play HLS video urls (m3u8) 'natively' |
檔案大小 | 1.25 MB |
安裝次數 | 331,277 |
目前版本 | 1.1.5 |
更新時間 | 2022-05-31 |
上架時間 | 2019-04-08 |
評分 | 4.36/5 共 241 次評分 |
開發者 | Gaetan Hervouet |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Native HLS Playback", "version": "1.1.5", "description": "Allow the browser to play HLS video urls (m3u8) 'natively'", "manifest_version": 2, "icons": { "128": "img\/icon128.png" }, "background": { "scripts": [ "event.js", "global.js" ] }, "content_security_policy": "script-src 'self' blob:; object-src 'self'", "permissions": [ "tabs", "*:\/\/*\/*.m3u8*", "webRequest", "webRequestBlocking", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_title": "Disable", "default_icon": "img\/icon128.png", "default_popup": "popup.html" }, "web_accessible_resources": [ "*.js", "*.html" ], "omnibox": { "keyword": "m3u8" } } |