Clearplay

Clearplay

What it does: ClearPlay enables families to skip and mute content in streaming movies so you can enjoy the show with your family…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Clearplay",
  "version": "1.6.14",
  "minimum_chrome_version": "100.0.0",
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "assets/styles/font.css"
      ],
      "js": [
        "assets/scripts/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "assets/scripts/background.js"
  },
  "options_ui": {
    "page": "assets/options.html"
  },
  "icons": {
    "16": "assets/images/logo16.png",
    "48": "assets/images/logo48.png",
    "128": "assets/images/logo128.png"
  },
  "action": {
    "default_icon": "assets/images/logo128.png",
    "default_popup": "assets/popup.html"
  },
  "permissions": [
    "tabs",
    "cookies",
    "scripting",
    "storage",
    "unlimitedStorage",
    "identity"
  ],
  "host_permissions": [
    "https://.clearplay.com/",
    "https://*.clearplay.com/",
    "https://*.amazonaws.com/clearplay-web/",
    "https://*.disneyplus.com/",
    "https://*.netflix.com/"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/fonts/*.woff",
        "assets/images/svg-defs.svg*",
        "assets/images.svg",
        "assets/images/*.png",
        "assets/styles/*",
        "main.min.css",
        "assets/scripts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "version_name": "1.6.14"
}