OpenTable with Yelp

OpenTable with Yelp

OpenTable with Yelp shows a tooltip of Yelp reviews for a restaurant.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "OpenTable with Yelp",
  "version": "1.8",
  "icons": {
    "128": "/images/yelp_logo_128x128.png"
  },
  "description": "OpenTable with Yelp shows a tooltip of Yelp reviews for a restaurant.",
  "content_scripts": [
    {
      "matches": [
        "http://www.opentable.com/*"
      ],
      "js": [
        "/js/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "/js/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://www.opentable.com/*",
    "http://gae-proxi.appspot.com/*"
  ],
  "page_action": {
    "default_title": "Show Yelp Tip",
    "default_icon": "/images/yelp_logo_128x128.png",
    "default_popup": "popup.html"
  },
  "manifest_version": 2
}