Custom Image Face Filter for Google Meet

Custom Image Face Filter for Google Meet

Making face filters with your images on 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": "Custom Image Face Filter for Google Meet",
  "description": "Making face filters with your images on Google Meet",
  "version": "0.1.1",
  "author": "Hyojin Kwak <[email protected]>",
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "permissions": [
    "https://meet.google.com/*"
  ],
  "web_accessible_resources": [
    "bundle.js"
  ],
  "externally_connectable": {
    "matches": [
      "https://meet.google.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "exclude_matches": [
        "https://meet.google.com/"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}