m3u8 online video extractor

m3u8 online video extractor

m3u8 online video extractor

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "m3u8 online video extractor",
  "version": "1.1.3",
  "description": "m3u8 online video extractor",
  "browser_action": {
    "default_icon": "icon/icon64.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "js/content.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/background.bundle.js",
      "js/background.js"
    ]
  },
  "options_ui": {
    "page": "index.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "icon/icon16.png",
    "64": "icon/icon64.png",
    "128": "icon/icon128.png"
  },
  "permissions": [
    "storage",
    "https://*/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "offline_enabled": false
}