meet virtual cam

meet virtual cam

meet에서 웹캠이 아닌 미리 녹화해둔 영상으로 대체할 수 있는 프로그램입니다

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "meet virtual cam ",
  "description": "meet에서 웹캠이 아닌 미리 녹화해둔 영상으로 대체할 수 있는 프로그램입니다",
  "version": "1.1",
  "manifest_version": 2,
  "content_scripts": [
    {
      "js": [
        "/js/contents.js"
      ],
      "matches": [
        "*://meet.google.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "tempsnip.png",
    "html.htm",
    "png/off.png",
    "png/button.png",
    "js/mediaSourceSwap.js"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "/js/background.js"
    ]
  },
  "browser_action": {
    "default_popup": "html.htm"
  }
}