Google Meet Grid View Fix

Google Meet Grid View Fix

Arrange Google Meets participants in grid layout and Hold Space bar to unmute while you talk, 100% working

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.13",
  "homepage_url": "https://googlemeetgridview.com",
  "icons": {
    "24": "icons/24.png",
    "36": "icons/36.png",
    "48": "icons/48.png",
    "128": "icons/128.png",
    "196": "icons/196.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Google Meet Grid View & Push to Talk",
    "default_icon": {
      "24": "icons/24.png",
      "36": "icons/36.png",
      "48": "icons/48.png"
    }
  },
  "background": {
    "service_worker": "bg.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "tabs",
    "storage",
    "unlimitedStorage",
    "gcm",
    "notifications",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "js": [
        "browser-polyfill.js",
        "c0.js"
      ],
      "run_at": "document_end",
      "match_about_blank": false,
      "all_frames": false,
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "js": [
        "browser-polyfill.js",
        "c1.js"
      ],
      "run_at": "document_end",
      "match_about_blank": false,
      "all_frames": false,
      "matches": [
        "https://meet.google.com/*"
      ]
    }
  ]
}