Crunchyroll Ad Blocker

Crunchyroll Ad Blocker

Enhance Your Anime Streaming Experience With Crunchyroll Ad Blocker Extension. Enjoy Uninterrupted Viewing Without Annoying Ads.

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.2",
  "manifest_version": 3,
  "host_permissions": [
    "*://*.crunchyroll.com/*"
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs"
  ],
  "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": [
        "*://*.crunchyroll.com/*"
      ],
      "match_origin_as_fallback": true,
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}