MeetInOne Extension for Google Meet

MeetInOne Extension for Google Meet

Enhance your Google Meet experience with MeetInOne for Chrome. MeetInOne is the best Google Meet enhancement extension around and is 100% free.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "short_name": "MeetInOne Launcher",
  "description": "Extension to auto-launch your MeetInOne application when you need it.",
  "icons": {
    "16": "16x16.png",
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "start_url": ".",
  "display": "standalone",
  "theme_color": "#000000",
  "background_color": "#ffffff",
  "name": "MeetInOne Launcher",
  "version": "0.1.3",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://*.meet.google.com/*"
      ],
      "run_at": "document_start",
      "all_frames": false,
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": []
}