Meet Extension

Meet Extension

A better Google Meet experience with the best Meet Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "A better Google Meet experience with the best Meet Extension",
  "version": "10.1.1",
  "manifest_version": 3,
  "name": "Meet Extension",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon128.png"
  },
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "contextMenus",
    "alarms",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-48.png"
      ],
      "matches": []
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "css": [
        "content.styles.css"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://calendar.google.com/*"
      ],
      "css": [
        "gcalendar.styles.css"
      ],
      "js": [
        "gCalendar.bundle.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lordataScript.bundle.js"
      ]
    }
  ]
}