Keycheap - Share Your Subscriptions

Keycheap - Share Your Subscriptions

Keycheap allow users to share accounts to reduce subscription cost. How to use the plugin ? 1) add a cd-key bought from…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Keycheap - Share Your Subscriptions",
  "version": "2.5",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.keycheap.one/*"
  ],
  "icons": {
    "16": "icons/logo16.png",
    "48": "icons/logo48.png",
    "128": "icons/logo128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/logo16.png",
      "48": "icons/logo48.png",
      "128": "icons/logo128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.netflix.com/*",
        "*://*.disneyplus.com/*",
        "*://*.pornhubpremium.com/*",
        "*://*.crunchyroll.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}