Super Zoom

Super Zoom

Super Zoom allows you to zoom in and out the content shared by others in Google Meet and locates tabs with your meetings

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "author": "SK",
  "name": "Super Zoom",
  "version": "2.0",
  "description": "Super Zoom allows you to zoom in and out the content shared by others in Google Meet and locates tabs with your meetings",
  "permissions": [
    "tabs"
  ],
  "icons": {
    "16": "128128.png",
    "32": "128128.png",
    "48": "128128.png",
    "128": "128128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}