TerritoryHelper - AddOn

TerritoryHelper - AddOn

Modify your print-out of territory cards with injected bottons to ROTATE map view, HIDE table elements, TUNE descriptions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extname__",
  "short_name": "TH+tweaker",
  "description": "__MSG_extdesc__",
  "version": "3.00",
  "author": "Matthias Henckell, MATHEsoft®",
  "homepage_url": "https://th.geox.work",
  "manifest_version": 3,
  "minimum_chrome_version": "100",
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.territoryhelper.com/*",
        "*://territoryhelper.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "jquery.min.js",
        "jquery-ui.min.js",
        "jquery-ui.js",
        "ol/ol.js",
        "ol/ol-ext.js",
        "content.js",
        "mapboxstyle.js"
      ],
      "css": [
        "ol/ol.css",
        "ol/ol-ext.css",
        "jquery-ui.css",
        "jquery-ui.min.css",
        "overwrite.css"
      ]
    }
  ],
  "action": {
    "default_icon": "nord.png",
    "default_title": "__MSG_extname__"
  },
  "icons": {
    "40": "nord.png",
    "64": "nord64.png",
    "128": "nord128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "nord.png",
        "cross.png",
        "th_nord.png",
        "rotate_btn.png",
        "options.html",
        "options.js",
        "images/*",
        "images2/*"
      ],
      "matches": [
        "*://*.territoryhelper.com/*",
        "*://territoryhelper.com/*"
      ]
    }
  ]
}