Maplo.cz

Maplo.cz

A simple tool to retrieve and manage your property data from the Nahlížení do katastru service in Czech Republic.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDescription__",
  "homepage_url": "https://www.maplo.cz/",
  "author": "Maplo",
  "version": "1.8.1",
  "version_name": "1.8.1",
  "manifest_version": 3,
  "default_locale": "cs",
  "minimum_chrome_version": "88",
  "icons": {
    "128": "assets/img/128x128.png",
    "324": "assets/img/324x324.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://nahlizenidokn.cuzk.cz/*",
        "https://vdp.cuzk.cz/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "https://*.katastrcrm.cz/",
    "https://*.maplo.cz/",
    "https://nahlizenidokn.cuzk.cz/",
    "https://katastr.cuzk.cz/",
    "https://login.cuzk.cz/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/img/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.katastrcrm.cz/*",
      "https://*.maplo.cz/*"
    ]
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "assets/img/128x128.png",
      "324": "assets/img/324x324.png"
    },
    "default_title": "__MSG_appName__"
  }
}