Coordinates Helper

Coordinates Helper

This extension will help you build a route in Google Maps by highlighting the required area with coordinates.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Coordinates Helper",
  "version": "1.0.6",
  "description": "This extension will help you build a route in Google Maps by highlighting the required area with coordinates.",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png",
      "48": "icon48.png"
    }
  }
}