Virtual Engagement Tools (VET) by Plugin

Virtual Engagement Tools (VET) by Plugin

This extension allows you to apply effects like Blur, Pixelate and Inverse to your camera live during Google Meets

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Virtual Engagement Tools (VET) by Plugin",
  "description": "This extension allows you to apply effects like Blur, Pixelate and Inverse to your camera live during Google Meets",
  "version": "1.0",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "main.js",
        "content/injectScripts.js"
      ],
      "matches": [
        "*://meet.google.com/**-**-**",
        "*://visual-effects.herokuapp.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "dist/*"
  ],
  "background": {
    "scripts": [
      "update.js"
    ]
  },
  "browser_action": {
    "default_title": "VET By Plugin",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "*://meet.google.com/**-**-**",
    "*://visual-effects.herokuapp.com/*",
    "storage"
  ],
  "icons": {
    "32": "icons/32.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  }
}