Google Meets Individual Fullscreen

Google Meets Individual Fullscreen

Extension that allows You to make any video source fullscreen in a google meeting.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "1.0.5",
  "name": "Google Meets Individual Fullscreen",
  "description": "Extension that allows You to make any video source fullscreen in a google meeting.",
  "homepage_url": "https://github.com/angeloevangelista/google-meet-fullscreen",
  "icons": {
    "16": "./icons/16.png",
    "48": "./icons/48.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "enable_fullscreen.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{780b1781-206b-4822-90c3-a2f8095b75c2}"
    }
  }
}