Crypto Raiders Companion

Crypto Raiders Companion

The crypto raiders extentions you always needed!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.10.0",
  "short_name": "CR Companion",
  "name": "Crypto Raiders Companion",
  "description": "The crypto raiders extentions you always needed!",
  "action": {
    "default_popup": "popup.html",
    "default_title": "Open the popup"
  },
  "host_permissions": [
    "*://play.cryptoraiders.xyz/*",
    "*://dungeon.cryptoraiders.gg/*"
  ],
  "content_scripts": [
    {
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "css/contentScript.css"
      ],
      "matches": [
        "*://play.cryptoraiders.xyz/*",
        "*://dungeon.cryptoraiders.gg/*"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://play.cryptoraiders.xyz/*"
    ]
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "icons": {
    "16": "img/logo-16.png",
    "32": "img/logo-32.png",
    "48": "img/logo-48.png",
    "128": "img/logo-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/premiumLogo.png",
        "img/discordIcon.png",
        "img/matic.png",
        "lib/web3.js"
      ],
      "matches": [
        "*://*.cryptoraiders.xyz/*",
        "*://*.cryptoraiders.gg/*"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "storage",
    "notifications",
    "system.display"
  ]
}