Examine source code of Meeting Auto-Joiner

Inspect and view changes in Meeting Auto-Joiner 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": "Meeting Auto-Joiner",
  "version": "0.0.6",
  "description": "Automatically opens Google Meet links for your scheduled meetings.",
  "permissions": [
    "alarms",
    "storage",
    "identity",
    "notifications"
  ],
  "host_permissions": [
    "https://www.googleapis.com/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "green_square_16px.png",
      "48": "green_square_48px.png",
      "128": "green_square_128px.png"
    }
  },
  "icons": {
    "16": "green_square_16px.png",
    "48": "green_square_48px.png",
    "128": "green_square_128px.png"
  },
  "oauth2": {
    "client_id": "93739012626-dlh0hn8492brb13qb5hioqrvak7lvhb1.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/calendar.readonly"
    ]
  }
}