HBO Max Picture in Picture

HBO Max Picture in Picture

Extension to watch HBOMax in Picture in Picture mode. Enables a separate floating window to enjoy your favorite video content.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "HBO Max Picture in Picture",
  "version": "0.0.22",
  "description": "Extension to watch HBOMax in Picture in Picture mode. Enables a separate floating window to enjoy your favorite video content.",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "js": [
        "js/vendor/jquery-3.4.1.min.js",
        "js/content.js",
        "js/hbomax.min.js"
      ],
      "matches": [
        "http://play.hbomax.com/*",
        "https://play.hbomax.com/*"
      ]
    },
    {
      "run_at": "document_end",
      "js": [
        "js/vendor/jquery-3.4.1.min.js",
        "js/content.js",
        "js/max.min.js"
      ],
      "matches": [
        "*://*.max.com/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ]
}