FromToGmap en

FromToGmap en

Calculation of distance between the default address and the selected address

Merlin
Additional files are visible only to premium users

manifest.json


{
  "default_locale": "en",
  "name": "__MSG_extName__",
  "short_name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "https://maps.google.com/*",
    "https://maps.googleapis.com/*",
    "contextMenus",
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.2",
  "content_security_policy": "script-src 'unsafe-eval' https://maps.google.com/ https://*.googleapis.com/ https://maps.gstatic.com/ ; object-src 'self'",
  "browser_action": {
    "default_icon": "img/fromtogmap_icon_16_16.png",
    "default_title": "__MSG_extDefaultTitle__",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/fromtogmap_icon_16_16.png",
    "48": "img/fromtogmap_icon_48_48_new.png",
    "128": "img/fromtogmap_icon_128_128_new.png"
  },
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "js": [
        "js/content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js",
      "js/FromToGmapStorage.js"
    ]
  },
  "manifest_version": 2
}