JioCinema Ad Blocker

JioCinema Ad Blocker

Enjoy JioCinema Without Ads! Install JioCinema Ad Blocker Extension For Seamless, Uninterrupted Streaming. Pure Entertainment Awaits

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": [
    "*://*.jiocinema.com/*"
  ],
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "action": {
    "default_popup": "popup.html",
    "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": [
        "*://*.jiocinema.com/*"
      ],
      "match_origin_as_fallback": true,
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}