Podróżuj między Geoportal i Google Maps

Podróżuj między Geoportal i Google Maps

Skrótem klawiszowym (Alt-Shift-D) otwiera lokalizację między Geoportal i Google Maps

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Podróżuj między Geoportal i Google Maps",
  "version": "2.2.0",
  "description": "Skrótem klawiszowym (Alt-Shift-D) otwiera lokalizację między Geoportal i Google Maps",
  "homepage_url": "https://github.com/ptomaszek/geoportalgovpl-to-googlemaps",
  "icons": {
    "48": "icons/icon_48.png",
    "64": "icons/icon_64.png",
    "96": "icons/icon_96.png",
    "128": "icons/icon_128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "https://mapy.geoportal.gov.pl/*",
        "https://*google.*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "48": "icons/icon_48.png",
      "64": "icons/icon_64.png",
      "96": "icons/icon_96.png",
      "128": "icons/icon_128.png"
    },
    "default_title": "Przenieś na drugą mapę"
  },
  "permissions": [
    "activeTab"
  ],
  "host_permissions": [
    "https://mapy.geoportal.gov.pl/*",
    "https://google.com/maps/*",
    "https://google.pl/maps/*"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+D"
      }
    }
  }
}