Grid View for Google Meet™

Grid View for Google Meet™

Adds a button to use a grid layout in Google Meet™.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "/js/welcome.js"
  },
  "action": {
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_guide__"
  },
  "content_scripts": [
    {
      "js": [
        "js/inject.js"
      ],
      "matches": [
        "https://meet.google.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_application_description__",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_application_title__",
  "offline_enabled": true,
  "version": "3.0.0",
  "homepage_url": "https://grid-view-google-meet.dllplayer.com",
  "web_accessible_resources": [
    {
      "resources": [
        "icons/grid.png",
        "icons/automute-disabled.png",
        "icons/automute.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}