Meet Plus for Google Meet

Meet Plus for Google Meet

Breakout rooms,attendance,dark mode,chat,emojis,reward points,quiz,poll,file sharing,stickies,many more features for Google Meet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "11.5.0",
  "description": "__MSG_extDesc__",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoKghh/W5BT9AJB9SPZKgqEDNOF3IHUMRyVhMDhx5QbCjLl81dkaOa++Cs3C06WgCyS0IRXxcLBcFhKXXeV7dN9zo4SCoqxpeqzqe5DsgmYu975anTNB0f/5RF7S3a7KZ0pfa3CNZjk9T0Zk6YtFwGllIKnmKyvZmTqKaEWPENd2uYAdSeRZpS/5tOEtTWi+fxoKWdvkcrXR4sgVDcBLM1BK+PkR1YeANmC5/pPZTckovmrckMPUVyvmi0muEZuWDsshQexMwPb3JhA6bj0PZMQRA/MxGVZh56FNmG+JBO2DkHYVYSjPdqb85P5DnivUz8ofBWL4WapmNjPB66q4JzwIDAQAB",
  "oauth2": {
    "client_id": "108660109298-vssfoiqnf5pf27mom96ulgtjak86q2s4.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive.file"
    ]
  },
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "__MSG_extName__",
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png",
      "48": "icons/48.png",
      "64": "icons/64.png",
      "128": "icons/128.png"
    }
  },
  "permissions": [
    "tabs",
    "identity"
  ],
  "host_permissions": [
    "*://meet.google.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.js"
      ],
      "all_frames": true
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://meet.google.com/*"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "injected.js",
        "gtm.js",
        "tools.js",
        "jquery.js",
        "template.html",
        "style.css",
        "injected.css",
        "images/*",
        "sounds/*",
        "lottie/*",
        "trustPolicy.js"
      ],
      "matches": [
        "*://meet.google.com/*"
      ]
    }
  ]
}