Hotstar Party plus

Hotstar Party plus

Chat and party with your friends while watching your favorite movie, TV show, IPL and more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hotstar Party plus",
  "version": "0.1",
  "manifest_version": 3,
  "description": "Chat and party with your friends while watching your favorite movie, TV show, IPL and more",
  "permissions": [
    "activeTab",
    "storage",
    "background"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "hp3.png"
  },
  "icons": {
    "128": "hp3.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.hotstar.com/in*",
        "https://www.hotstar.com/in/*"
      ],
      "js": [
        "jquery.min.js",
        "socket.io.js",
        "content.js",
        "hstar.js"
      ],
      "css": [
        "styles.css",
        "hstar.css"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "jquery.min.js",
        "socket.io.js",
        "iframe.css",
        "iframe.js",
        "index.html",
        "iframe.html",
        "min.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}