Google Meet Virtual Backgrounds

Google Meet Virtual Backgrounds

Change background for Google Meet during the real-time meeting. Choose from standard fonds or create your own custom Google Meet…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "version": "3.4",
  "description": "__MSG_description__",
  "default_locale": "en",
  "content_scripts": [
    {
      "run_at": "document_start",
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/pip_content.js"
      ]
    },
    {
      "run_at": "document_start",
      "all_frames": true,
      "matches": [
        "*://meet.google.com/*"
      ],
      "css": [
        "css/meeting_content.css"
      ],
      "js": [
        "js/replacer.js"
      ]
    },
    {
      "run_at": "document_idle",
      "all_frames": true,
      "matches": [
        "*://unsplash.com/*"
      ],
      "js": [
        "js/unsplash.js"
      ]
    },
    {
      "run_at": "document_start",
      "all_frames": false,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/upload_background.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "assets/img/icons/icon.png",
      "24": "assets/img/icons/icon.png",
      "32": "assets/img/icons/icon.png",
      "64": "assets/img/icons/icon.png",
      "128": "assets/img/icons/icon.png"
    },
    "default_title": "Virtual Backgrounds for Google Meet",
    "default_popup": "Popup.html"
  },
  "icons": {
    "16": "assets/img/icons/icon.png",
    "48": "assets/img/icons/icon.png",
    "128": "assets/img/icons/icon.png"
  },
  "web_accessible_resources": [
    "js/overideDefaultUserMedia.js",
    "assets/img/icons/icon.png"
  ],
  "permissions": [
    "<all_urls>",
    "storage",
    "unlimitedStorage",
    "tabs",
    "cookies"
  ]
}