Hotstar Ad Blocker

Hotstar Ad Blocker

Say Goodbye To Interruptions! Hotstar Ad Blocker Extension Lets You Stream Your Favorite Shows On Hotstar Without Annoying Ads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "0.0.1",
  "manifest_version": 3,
  "host_permissions": [
    "*://*.hotstar.com/*"
  ],
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_name__",
    "default_icon": {
      "128": "image/128.png"
    }
  },
  "icons": {
    "16": "image/16.png",
    "32": "image/32.png",
    "48": "image/48.png",
    "128": "image/128.png"
  },
  "content_scripts": [
    {
      "js": [
        "options.js",
        "content.js"
      ],
      "matches": [
        "*://*.hotstar.com/*"
      ],
      "match_origin_as_fallback": true,
      "all_frames": true
    },
    {
      "js": [
        "contentScript.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}