Meet Pro

Meet Pro

The Meet Pro is designed to simplify the process of creating Google Meet links by adding a new menu item in Edge.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Meet Pro",
  "description": "The Meet Pro is designed to simplify the process of creating Google Meet links by adding a new menu item in Edge.",
  "version": "0.0.0.19",
  "permissions": [
    "identity",
    "identity.email",
    "storage",
    "contextMenus",
    "clipboardWrite",
    "offscreen",
    "notifications"
  ],
  "oauth2": {
    "client_id": "419882667463-80s61todsc6m9b2nju9iqi70tef6c2hm.apps.googleusercontent.com",
    "scopes": [
      "openid",
      "email",
      "https://www.googleapis.com/auth/calendar"
    ]
  },
  "content_security_policy": {
    "extension_pages": "default-src 'self'; connect-src https://meetpro.app https://oauth2.googleapis.com"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/logo/16.png",
      "32": "assets/logo/32.png",
      "48": "assets/logo/48.png",
      "128": "assets/logo/128.png"
    },
    "default_title": "Instantly meet link creation"
  },
  "icons": {
    "16": "assets/logo/16.png",
    "32": "assets/logo/32.png",
    "48": "assets/logo/48.png",
    "128": "assets/logo/128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}