Google Meet Virtual Backgrounds

Google Meet Virtual Backgrounds - Easy way to change your webcam background on Google Meet

Google Meet Virtual Backgrounds란 무엇입니까?

Google Meet Virtual Backgrounds은(는) https://www.w3technic.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Google Meet Virtual Backgrounds - Easy way to change your webcam background on Google Meet"입니다.

확장 프로그램 스크린샷

screenshot

Google Meet Virtual Backgrounds 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Replace your current background by the virtual background during your Google Meet calls, without a green screen.
This extension made by babgev (not from Google)                    

확장 프로그램 기본 정보

이름 Google Meet Virtual Backgrounds Google Meet Virtual Backgrounds
ID bmgogkgklcedkeplmalbcklcbpgelpdg
공식 URL https://chrome.google.com/webstore/detail/google-meet-virtual-backg/bmgogkgklcedkeplmalbcklcbpgelpdg
설명 Google Meet Virtual Backgrounds - Easy way to change your webcam background on Google Meet
파일 크기 280 KB
설치 횟수 20,000
현재 버전 2.0.0
최근 업데이트 2020-08-07
출시 날짜 2020-08-03
평점 1.84/5 총 31 개의 평점
개발자 https://www.w3technic.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.w3technic.com/2020/07/virtual-background-for-google-meet.html
도움말 페이지 URL https://www.w3technic.com/p/contact.html
개인정보 보호 정책 페이지 URL https://w3technic.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Virtual Backgrounds ",
    "version": "2.0.0",
    "description": "Google Meet Virtual Backgrounds - Easy way to change your webcam background on Google Meet",
    "homepage_url": "https:\/\/www.w3technic.com\/2020\/08\/google-meet-virtual-background-how-to.html",
    "short_name": "VirtualBackgroundsForMeet",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "assets\/icons\/logo-16.png",
        "32": "assets\/icons\/logo-32.png",
        "48": "assets\/icons\/logo-48.png",
        "128": "assets\/icons\/logo-128.png"
    },
    "author": "Coderantine",
    "minimum_chrome_version": "49",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/logo-16.png",
            "32": "assets\/icons\/logo-32.png",
            "48": "assets\/icons\/logo-48.png",
            "128": "assets\/icons\/logo-128.png"
        },
        "default_title": "Google Meet Virtual backgrounds",
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "js\/update-conf.js",
            "js\/update.js",
            "js\/background.bundle.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/mediaSourceSwap.js"
    ]
}