Blur Background for Google Meet™

Blur Background for Google Meet™

Blur out your background during Google Meet calls. Protect your privacy!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "/js/bg-worker.js"
  },
  "container": [
    "GOOGLE_DRIVE"
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/common.js",
        "scripts/[email protected]",
        "scripts/browser-polyfill.js",
        "scripts/config.js",
        "scripts/[email protected]",
        "scripts/virtualBg.js",
        "scripts/sidebar.js"
      ],
      "matches": [
        "*://meet.google.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_AppDesc__",
  "homepage_url": "https://blur-background.pdfwork.com/",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_AppName__",
  "permissions": [
    "storage"
  ],
  "version": "3.0.0",
  "web_accessible_resources": [
    {
      "resources": [
        "/styles/*",
        "/images/*",
        "/webfonts/*",
        "/scripts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": "images/icon128.png",
    "default_popup": "ui/popup.html"
  }
}