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