Play M3u8
Play HLS url in-browser
Co to jest Play M3u8?
Play M3u8 to rozszerzenie Chrome opracowane przez andrexnet, a jego główną funkcją jest „Play HLS url in-browser”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Play M3u8
Pobierz pliki rozszerzeń Play M3u8 w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | folmbcaopkfclhmdbolnifkpmkfcmlfe |
Oficjalny URL | https://chrome.google.com/webstore/detail/play-m3u8/folmbcaopkfclhmdbolnifkpmkfcmlfe |
Opis | Play HLS url in-browser |
Rozmiar pliku | 191 KB |
Liczba instalacji | 3,000 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2021-01-31 |
Data Publikacji | 2020-11-01 |
Ocena | 2.60/5 Łącznie 5 Oceny |
Deweloper | andrexnet |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |