FOE - CDB cost building

FOE - CDB cost building

Cost of building in Forge of Empires

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FOE - CDB cost building",
  "version": "1.0",
  "manifest_version": 3,
  "description": "Cost of building in Forge of Empires",
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/script.js"
      ],
      "matches": [
        "*://fr8.forgeofempires.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "*://fr8.forgeofempires.com/*"
      ]
    }
  ],
  "permissions": [
    "webRequest"
  ],
  "host_permissions": [
    "*://fr8.forgeofempires.com/*"
  ],
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "icons": {
    "65": "images/icon-128.png"
  }
}