Enhanced Disney+ Hotstar

Enhanced Disney+ Hotstar

Enhancing Disney+ Hotstar features for a better watching experiences

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "author": "Supakarn Laorattanakul",
  "default_locale": "en",
  "icons": {
    "32": "assets/icons/enhanced_dhs32.png",
    "48": "assets/icons/enhanced_dhs48.png",
    "64": "assets/icons/enhanced_dhs64.png",
    "128": "assets/icons/enhanced_dhs128.png",
    "256": "assets/icons/enhanced_dhs256.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*.hotstar.com/*",
    "https://hotstar.com/*",
    "https://*.apps.disneyplus.com/*",
    "https://apps.disneyplus.com/*"
  ],
  "version": "0.6.0.0",
  "version_name": "0.6.0.0",
  "background": {
    "service_worker": "src/serviceWorker/index.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "src/contentScript/index.js"
      ],
      "matches": [
        "https://*.hotstar.com/*",
        "https://hotstar.com/*",
        "https://*.apps.disneyplus.com/*",
        "https://apps.disneyplus.com/*"
      ]
    }
  ],
  "action": {
    "default_title": "Enhance your Hotstar",
    "default_popup": "src/popup/index.html",
    "default_icon": {
      "16": "assets/icons/d_action_icon_default16.png",
      "32": "assets/icons/d_action_icon_default32.png",
      "48": "assets/icons/d_action_icon_default48.png"
    }
  }
}