Combat helper CryptoBlades

Combat helper CryptoBlades

It gives you the combat percentages before you fight the enemies

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Combat helper CryptoBlades",
  "description": "It gives you the combat percentages before you fight the enemies",
  "version": "0.0.0.3",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/logo_16.png",
      "32": "/images/logo_32.png",
      "48": "/images/logo_48.png",
      "128": "/images/logo_128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.cryptoblades.io/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "icons": {
    "16": "/images/logo_16.png",
    "32": "/images/logo_32.png",
    "48": "/images/logo_48.png",
    "128": "/images/logo_128.png"
  }
}