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文件

下載Webcam Switcher擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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:\/\/*\/*"
            ]
        }
    ]
}