Map Decals for TagPro

Map Decals for TagPro

Adds a bunch of "decals" (image overlays) on to maps in TagPro. Decal sets can be imported and configured from the server home page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Map Decals for TagPro",
  "short_name": "Map Decals",
  "description": "Adds a bunch of \"decals\" (image overlays) on to maps in TagPro. Decal sets can be imported and configured from the server home page.",
  "version": "1.0.1",
  "author": "Browncoat",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "48": "resources/logo_48.png",
    "128": "resources/logo_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.koalabeast.com/*",
        "http://*.newcompte.fr/*",
        "http://*.jukejuice.com/*"
      ],
      "css": [
        "style/decals.css"
      ],
      "js": [
        "script/jquery-2.1.4.min.js",
        "script/map-decals.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "resources/*",
    "fonts/*",
    "script/decal-renderer.js"
  ]
}