FOE Power Tools

FOE Power Tools

A set of tools to manage your Forege of Empires city.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FOE Power Tools",
  "description": "A set of tools to manage your Forege of Empires city.",
  "version": "1.2",
  "options_page": "common/options.html",
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*.forgeofempires.com/game/index*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "common/img/Icon(16x16).png",
      "48": "common/img/Icon(48x48).png",
      "128": "common/img/Logo_Final(128x128).png"
    },
    "default_title": "FOE Power Tools",
    "default_popup": "common/popup.htm"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "externally_connectable": {
    "matches": [
      "https://*.forgeofempires.com/game/index*",
      "https://foepowertools.com/*"
    ]
  },
  "icons": {
    "16": "common/img/Icon(16x16).png",
    "48": "common/img/Icon(48x48).png",
    "128": "common/img/Logo_Final(128x128).png"
  },
  "web_accessible_resources": [
    "common/img/*.png"
  ]
}