Yelp on OpenTable

Yelp on OpenTable

While on a restaurant on OpenTable, clicking the extension icon prompts you a popup which shows you information of the restaurant…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Yelp on OpenTable",
  "name": "Yelp on OpenTable",
  "icons": {
    "16": "logo128.png",
    "48": "logo128.png",
    "128": "logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.opentable.com/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "manifest_version": 3,
  "version": "2.0.0",
  "action": {
    "default_popup": "index.html",
    "default_title": "Yelp on OpenTable"
  }
}