GBG Camp Distributor

GBG Camp Distributor

A small tool used to help distribute camps on Forge of Empires Guild Battlegrounds without wasting resources.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GBG Camp Distributor",
  "version": "0.2.0",
  "description": "A small tool used to help distribute camps on Forge of Empires Guild Battlegrounds without wasting resources.",
  "author": "PlanetTeamSpeak",
  "icons": {
    "16": "imgs/16-siege_camp.png",
    "32": "imgs/32-siege_camp.png",
    "48": "imgs/48-siege_camp.png",
    "128": "imgs/128-siege_camp.png"
  },
  "action": {
    "default_title": "GBG Camp Distributor"
  },
  "host_permissions": [
    "*://*.forgeofempires.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.forgeofempires.com/*"
      ],
      "js": [
        "js/web/injector.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/web/**",
        "css/**",
        "imgs/**"
      ],
      "matches": [
        "*://*.forgeofempires.com/*"
      ]
    }
  ]
}