Webcam Switcher

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

Co to jest Webcam Switcher?

Webcam Switcher to rozszerzenie Chrome opracowane przez Moshe Kolodny, a jego główną funkcją jest „Switch webcams based on which one you're looking at.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Webcam Switcher

Pobierz pliki rozszerzeń Webcam Switcher w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Webcam Switcher Webcam Switcher
ID bpfkkobnfcajaidebaljcggknbfocpol
Oficjalny URL https://chrome.google.com/webstore/detail/webcam-switcher/bpfkkobnfcajaidebaljcggknbfocpol
Opis Switch webcams based on which one you're looking at.
Rozmiar pliku 10.57 MB
Liczba instalacji 136
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2022-02-15
Data Publikacji 2022-02-15
Deweloper Moshe Kolodny
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/kolodny/webcam-switcher
Adres URL Strony Pomocy https://github.com/kolodny/webcam-switcher/issues
Obsługiwane Języki 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:\/\/*\/*"
            ]
        }
    ]
}