Play M3u8
Play HLS url in-browser
Was ist Play M3u8?
Play M3u8 ist eine Chrome-Erweiterung, die von andrexnet entwickelt wurde, und ihr Hauptmerkmal ist "Play HLS url in-browser".
Erweiterungsscreenshots
Play M3u8-Erweiterungs-CRX-Datei herunterladen
Laden Sie Play M3u8-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | folmbcaopkfclhmdbolnifkpmkfcmlfe |
Offizielle URL | https://chrome.google.com/webstore/detail/play-m3u8/folmbcaopkfclhmdbolnifkpmkfcmlfe |
Beschreibung | Play HLS url in-browser |
Dateigröße | 191 KB |
Installationsanzahl | 3,000 |
Aktuelle Version | 1.0 |
Letztes Update | 2021-01-31 |
Veröffentlichungsdatum | 2020-11-01 |
Bewertung | 2.60/5 Insgesamt 5 Bewertungen |
Entwickler | andrexnet |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |