Examine source code of ResBooker

Inspect and view changes in ResBooker source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ResBooker",
  "version": "2.0.0",
  "description": "Effortless Restaurant Reservations at Your Fingertips!",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_ui": {
    "page": "options/home.html",
    "open_in_tab": true
  },
  "permissions": [
    "gcm",
    "storage",
    "scripting",
    "alarms",
    "tabs",
    "activeTab",
    "notifications",
    "identity",
    "identity.email"
  ],
  "host_permissions": [
    "*://*.resy.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "ResBooker"
  },
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "oauth2": {
    "client_id": "896923433028-dmac1rvjnha5rda8l802alahhpe3s47f.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/gmail.send",
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  }
}