Inline HLS Player

Inline HLS Player

Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Inline HLS Player",
  "short_name": "Inline HLS",
  "description": "Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)",
  "version": "0.1.1",
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "detectHlsVideo.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "injectHlsJs.js"
  ]
}