Webcam Switcher

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

Cos'è Webcam Switcher?

Webcam Switcher è un'estensione di Chrome sviluppata da Moshe Kolodny, e la sua funzione principale è "Switch webcams based on which one you're looking at.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Webcam Switcher

Scarica i file di estensione Webcam Switcher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Webcam Switcher Webcam Switcher
ID bpfkkobnfcajaidebaljcggknbfocpol
URL Ufficiale https://chrome.google.com/webstore/detail/webcam-switcher/bpfkkobnfcajaidebaljcggknbfocpol
Descrizione Switch webcams based on which one you're looking at.
Dimensione del File 10.57 MB
Conteggio Installazioni 136
Versione Corrente 1.0
Ultimo Aggiornamento 2022-02-15
Data di Pubblicazione 2022-02-15
Sviluppatore Moshe Kolodny
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kolodny/webcam-switcher
URL della Pagina di Aiuto https://github.com/kolodny/webcam-switcher/issues
Lingue Supportate 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:\/\/*\/*"
            ]
        }
    ]
}