Play M3u8
Play HLS url in-browser
What is Play M3u8?
Play M3u8 is a Chrome extension developed by andrexnet, and its main feature is "Play HLS url in-browser".
Extension Screenshots
Download Play M3u8 Extension CRX File
Download Play M3u8 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension with an clappr.js library from: https://github.com/clappr/clappr Play the m3u8 links you click on and any m3u8 links you paste into the address bar. It works by transmuxing MPEG-2 Transport Stream and AAC/MP3 streams into ISO BMFF (MP4) fragments. This transmuxing could be performed asynchronously using Web Worker if available in the browser. clappr.js also supports HLS + fmp4.
Extension Basic Information
Name | |
ID | folmbcaopkfclhmdbolnifkpmkfcmlfe |
Official URL | https://chrome.google.com/webstore/detail/play-m3u8/folmbcaopkfclhmdbolnifkpmkfcmlfe |
Description | Play HLS url in-browser |
File Size | 191 KB |
Installation Count | 3,000 |
Current Version | 1.0 |
Last Updated | 2021-01-31 |
Publish Date | 2020-11-01 |
Rating | 2.60/5 Total 5 Ratings |
Developer | andrexnet |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "background": { "persistent": true, "scripts": [ "event.js" ] }, "browser_action": { "default_icon": "icon128.png", "default_title": "Disable" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "description": "Play HLS url in-browser", "icons": { "128": "icon128.png" }, "manifest_version": 2, "name": "Play M3u8", "permissions": [ "*:\/\/*\/*.m3u8*", "webRequest", "webRequestBlocking", "storage" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0", "web_accessible_resources": [ "player.html", "icon128.png" ] } |