Webcam Switcher

Switch webcams based on which one you're looking at.

Webcam Switcher란 무엇입니까?

Webcam Switcher은(는) Moshe Kolodny에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Switch webcams based on which one you're looking at."입니다.

확장 프로그램 스크린샷

screenshot

Webcam Switcher 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to have multiple webcams used for a video call and will switch to whichever webcam you're looking most closely at.

You can change how often the face detection is checked and as well as how long you need to be looking at a new camera for it to switch (to protect against a quick glance).

This extension was uses
https://github.com/justadudewhohacks/face-api.js

And follows the following technique to create a virtual webcam
https://github.com/spite/virtual-webcam                    

확장 프로그램 기본 정보

이름 Webcam Switcher Webcam Switcher
ID bpfkkobnfcajaidebaljcggknbfocpol
공식 URL https://chrome.google.com/webstore/detail/webcam-switcher/bpfkkobnfcajaidebaljcggknbfocpol
설명 Switch webcams based on which one you're looking at.
파일 크기 10.57 MB
설치 횟수 136
현재 버전 1.0
최근 업데이트 2022-02-15
출시 날짜 2022-02-15
개발자 Moshe Kolodny
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kolodny/webcam-switcher
도움말 페이지 URL https://github.com/kolodny/webcam-switcher/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Webcam Switcher",
    "description": "Switch webcams based on which one you're looking at.",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_title": "Open the popup"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "loader.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content_script.js",
                "assets\/*.js",
                "models\/*",
                "models\/*.json",
                "models\/*.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}