TEC Extender

TEC Extender

Extensions and goodies for The Eternal City

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "TEC Extender",
  "short_name": "tecext",
  "description": "Extensions and goodies for The Eternal City",
  "version": "2.3.1",
  "action": {
    "default_icon": "images/icon32.png"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://client.eternalcitygame.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://client.eternalcitygame.com/*"
      ],
      "resources": [
        "content.js",
        "injected.js",
        "jsoneditor.js",
        "popup.js"
      ]
    }
  ],
  "permissions": [
    "background",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "*://client.eternalcitygame.com/*"
  ],
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self"
  }
}