Address Distance Lookup

Address Distance Lookup

Lookup the distance between two addresses in multiple forms with Google Maps

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Address Distance Lookup",
  "short_name": "Distance",
  "description": "Lookup the distance between two addresses in multiple forms with Google Maps",
  "version": "1.0.0",
  "permissions": [
    "notifications",
    "storage"
  ],
  "browser_action": {
    "default_icon": {
      "19": "img/icon.png",
      "38": "img/icon-38.png"
    },
    "default_title": "Address Distance Lookup",
    "default_popup": "lookup.html"
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "icons": {
    "16": "img/icon.png",
    "32": "img/icon-38.png",
    "48": "img/icon-64.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com https://maps.googleapis.com https://maps.gstatic.com https://mts0.googleapis.com https://mts1.googleapis.com; object-src 'self'",
  "web_accessible_resources": [
    "img/icon-64.png"
  ],
  "options_page": "options.html",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+M"
      }
    }
  }
}