Map Route Pro & Search

Map Route Pro & Search

Map Route Pro & Search resets your newtab, giving you access to a maps widget and custom web search.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Map Route Pro & Search",
  "description": "Map Route Pro & Search resets your newtab, giving you access to a maps widget and custom web search.",
  "version": "1.0.3",
  "background": {
    "service_worker": "./js/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/maps-ext.png"
      ],
      "matches": [
        "*://maproutepro.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://maproutepro.com/*"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "js": [
        "./js/contentscript.js"
      ]
    }
  ],
  "action": {
    "default_popup": "./html/action.html"
  },
  "chrome_url_overrides": {
    "newtab": "./html/mapsNewTab.html"
  },
  "incognito": "split",
  "icons": {
    "48": "./images/maps-ext.png"
  },
  "permissions": [
    "cookies",
    "storage"
  ],
  "host_permissions": [
    "*://maproutepro.com/*"
  ]
}