Right-Click Walk Score

Right-Click Walk Score

Display the Walk Score of any address

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Right-Click Walk Score",
  "description": "Display the Walk Score of any address",
  "homepage_url": "https://github.com/sarahhagstrom/chrome-walkscore/blob/master/README.md",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "version": "1.1.1",
  "options_page": "options.html",
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "popup.js"
      ]
    }
  ]
}