Google Meet ZoomIn & File Sharing

Google Meet ZoomIn & File Sharing

Provides drag n drop File sharing and ZoomIn option on Google Meet screen sharing

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Google Meet ZoomIn & File Sharing",
  "description": "Provides drag n drop File sharing and ZoomIn option on Google Meet screen sharing",
  "version": "0.7",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmsA65oUYLZF0Os5yokSAgq6TTlZVvqpKUtETILkNu/Rf3jMstgYUE2GRVdBvnlnNgvAlxWBgNUzIGyhHz8IHDXKWoZchx330IKgMaq1M322ePOhZ5N8bunREF0nA84BU/IC/Hzg/InNJUY66a4WaRUK1RSph+ewW8N7T9XQrOGuTXcNFTuXBH82XjYYioHanoU10Obv4nuglCEpLT5uDBA/GDMnEyWVjPP5rRzg134obzfqncjLwKEkjY3VHhhSrgkplI4aVluBlzbO8EW5jFO+HfqwGsGr1S5Cv1sOHfveqayCaHb/NfmIAs3V9WTLDJLW/Q1SrxjPIFpynvbUX8QIDAQAB",
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/icon128.png",
    "default_title": "ZoomIn"
  },
  "oauth2": {
    "client_id": "110644322811-12kjf457ilhaql1hgdrfj82r6saon4pc.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "https://meet.google.com/*"
      ]
    },
    {
      "resources": [
        "oauth2callback.html"
      ],
      "matches": [
        "https://accounts.google.com/*"
      ]
    },
    {
      "resources": [
        "googleauthredirect.html"
      ],
      "matches": [
        "https://accounts.google.com/*",
        "https://meet.google.com/*",
        "http://localhost:3000/*",
        "https://getnoads.com/*"
      ]
    }
  ],
  "host_permissions": [
    "https://meet.google.com/*"
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "matches": [
        "https://meet.google.com/*"
      ]
    }
  ]
}