Google Meet Zoom In Zoom Out

Google Meet Zoom In Zoom Out

Google Meet Zoom In Zoom Out allows to zoom in-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


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