Webcam Switcher

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

Was ist Webcam Switcher?

Webcam Switcher ist eine Chrome-Erweiterung, die von Moshe Kolodny entwickelt wurde, und ihr Hauptmerkmal ist "Switch webcams based on which one you're looking at.".

Erweiterungsscreenshots

screenshot

Webcam Switcher-Erweiterungs-CRX-Datei herunterladen

Laden Sie Webcam Switcher-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Webcam Switcher Webcam Switcher
ID bpfkkobnfcajaidebaljcggknbfocpol
Offizielle URL https://chrome.google.com/webstore/detail/webcam-switcher/bpfkkobnfcajaidebaljcggknbfocpol
Beschreibung Switch webcams based on which one you're looking at.
Dateigröße 10.57 MB
Installationsanzahl 136
Aktuelle Version 1.0
Letztes Update 2022-02-15
Veröffentlichungsdatum 2022-02-15
Entwickler Moshe Kolodny
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/kolodny/webcam-switcher
Hilfeseite URL https://github.com/kolodny/webcam-switcher/issues
Unterstützte Sprachen 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:\/\/*\/*"
            ]
        }
    ]
}