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
Eメール [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:\/\/*\/*"
            ]
        }
    ]
}