Command & Conquer TA POIs Analyser

Command & Conquer TA POIs Analyser

Displays data about the POIs owned by an alliance in a simple table along with a graph.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Command & Conquer TA POIs Analyser",
  "version": "2.0.1",
  "description": "Displays data about the POIs owned by an alliance in a simple table along with a graph.",
  "content_scripts": [
    {
      "matches": [
        "https://*.alliances.commandandconquer.com/*"
      ],
      "js": [
        "graph.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "CCTA POIs Analyser",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "icons": {
    "19": "icons/icon19.png",
    "38": "icons/icon38.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 2
}