Cya Chrome Extension!

Cya Chrome Extension!

Cya Chrome Extension!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cya Chrome Extension!",
  "description": "Cya Chrome Extension!",
  "version": "1.1.9",
  "manifest_version": 3,
  "background": {
    "service_worker": "sw.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/*"
      ],
      "all_frames": true,
      "js": [
        "netflix/cs.js"
      ],
      "css": [
        "netflix/style.css"
      ]
    },
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "all_frames": true,
      "js": [
        "youtube/cs.js"
      ],
      "css": [
        "youtube/style.css"
      ]
    },
    {
      "matches": [
        "https://www.primevideo.com/*"
      ],
      "all_frames": true,
      "js": [
        "primevideo/cs.js"
      ],
      "css": [
        "primevideo/style.css"
      ]
    },
    {
      "matches": [
        "https://www.crunchyroll.com/*"
      ],
      "all_frames": true,
      "js": [
        "crunchyroll/cs.js"
      ],
      "css": [
        "crunchyroll/style.css"
      ]
    },
    {
      "matches": [
        "https://static.crunchyroll.com/*"
      ],
      "all_frames": true,
      "js": [
        "crunchyroll/in.js"
      ]
    },
    {
      "matches": [
        "https://tubitv.com/*"
      ],
      "all_frames": true,
      "js": [
        "tubi/cs.js"
      ],
      "css": [
        "tubi/style.css"
      ]
    },
    {
      "matches": [
        "https://www.tsn.ca/*"
      ],
      "all_frames": true,
      "js": [
        "tsn/cs.js"
      ],
      "css": [
        "tsn/style.css"
      ]
    },
    {
      "matches": [
        "https://www.espn.com/*"
      ],
      "all_frames": true,
      "js": [
        "espn/cs.js"
      ],
      "css": [
        "espn/style.css"
      ]
    },
    {
      "matches": [
        "https://play.hbomax.com/*"
      ],
      "all_frames": true,
      "js": [
        "hbo/cs.js"
      ],
      "css": [
        "hbo/style.css"
      ]
    },
    {
      "matches": [
        "https://disneyplus.com/*"
      ],
      "all_frames": true,
      "js": [
        "disneyplus/cs.js"
      ],
      "css": [
        "disneyplus/style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "netflix/rs.js"
      ],
      "matches": [
        "https://www.netflix.com/*"
      ]
    },
    {
      "resources": [
        "primevideo/rs.js"
      ],
      "matches": [
        "https://www.primevideo.com/*"
      ]
    },
    {
      "resources": [
        "tubi/rs.js"
      ],
      "matches": [
        "https://tubitv.com/*"
      ]
    },
    {
      "resources": [
        "tsn/rs.js"
      ],
      "matches": [
        "https://www.tsn.ca/*"
      ]
    },
    {
      "resources": [
        "espn/rs.js"
      ],
      "matches": [
        "https://www.espn.com/*"
      ]
    },
    {
      "resources": [
        "hbo/rs.js"
      ],
      "matches": [
        "https://play.hbomax.com/*"
      ]
    },
    {
      "resources": [
        "disneyplus/rs.js"
      ],
      "matches": [
        "https://disneyplus.com/*"
      ]
    },
    {
      "resources": [
        "crunchyroll/rs.js"
      ],
      "matches": [
        "https://www.crunchyroll.com/*"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "common",
        "enabled": true,
        "path": "netRule.json"
      }
    ]
  },
  "icons": {
    "16": "/icons/icon_16.png",
    "32": "/icons/icon_32.png",
    "48": "/icons/icon_48.png",
    "128": "/icons/icon_128.png"
  },
  "permissions": [
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "cookies"
  ],
  "host_permissions": [
    "*://*/*"
  ]
}