Cyan Extension

Cyan Extension

Buy now, pay later for the Metaverse

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cyan Extension",
  "short_name": "Cyan dApp",
  "description": "Buy now, pay later for the Metaverse",
  "version": "2.1.8",
  "minimum_chrome_version": "93",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.opensea.io/*"
      ],
      "js": [
        "static/js/content/opensea.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.blur.io/*"
      ],
      "js": [
        "static/js/content/blur.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "logo128.png"
  },
  "permissions": [
    "storage",
    "notifications",
    "alarms",
    "scripting"
  ],
  "host_permissions": [
    "https://*.opensea.io/*",
    "https://*.usecyan.com/*",
    "https://*.blur.io/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/js/pageContextInject.js",
        "fonts/*.woff2"
      ],
      "matches": [
        "https://*.opensea.io/*",
        "https://*.blur.io/*"
      ]
    }
  ]
}