Hero Wars Simulator

Hero Wars Simulator

Extension for the Hero Wars game that gives more insight on heroes, battles and allows to simulate battles.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hero Wars Simulator",
  "description": "Extension for the Hero Wars game that gives more insight on heroes, battles and allows to simulate battles.",
  "version": "1.3.39",
  "manifest_version": 3,
  "icons": {
    "128": "images/HIcon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "128": "images/HIcon-128.png"
    },
    "default_title": "Hero Wars - Simulator"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "https://i.hero-wars-fb.com/*",
        "https://apps-1701433570146040.apps.fbsbx.com/*",
        "https://www.hero-wars.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "contentscript2.js"
      ],
      "matches": [
        "https://www.hw-simulator.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "identity",
    "tabs",
    "clipboardWrite"
  ],
  "host_permissions": [
    "https://www.hero-wars.com/*",
    "https://apps.facebook.com/mobaheroes/*",
    "https://apps-1701433570146040.apps.fbsbx.com/*",
    "https://www.facebook.com/gaming/play/1701433570146040/*",
    "https://auth.hw-simulator.com/auth/realms/HWSimulator/*",
    "https://www.hw-simulator.com/*",
    "https://api.hw-simulator.com/*",
    "https://api.imgbb.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "injected.js"
      ],
      "matches": [
        "https://www.hero-wars.com/*",
        "https://apps-1701433570146040.apps.fbsbx.com/*",
        "https://i.hero-wars-fb.com/*"
      ]
    }
  ]
}