Yelp to Google Maps

Yelp to Google Maps

Hate clicking on an address on Yelp and it opening in Yelp maps? Use this to have directions from a Yelp page open in Google Maps.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Yelp to Google Maps",
  "version": "1.0.2",
  "manifest_version": 2,
  "description": "Hate clicking on an address on Yelp and it opening in Yelp maps? Use this to have directions from a Yelp page open in Google Maps.",
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.yelp.com/*",
        "https://www.yelp.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}