Hulu adblocker

Hulu adblocker

Eliminate interruptions, enjoy hulu movies and shows ad-free

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hulu adblocker",
  "description": "Eliminate interruptions, enjoy hulu movies and shows ad-free ",
  "version": "1.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "hulu16x16.png",
    "48": "hulu48x48.png",
    "128": "hulu128x128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Hulu adblocker",
    "default_icon": "hulu16x16.png"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "permissions": [
    "declarativeNetRequest"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "contentScript.js"
      ]
    },
    {
      "matches": [
        "https://www.hulu.com/*"
      ],
      "js": [
        "hulu.js"
      ]
    }
  ]
}