Webcam Switcher

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

Vad är Webcam Switcher?

Webcam Switcher är en Chrome-tillägg utvecklad av Moshe Kolodny, och dess huvudfunktion är "Switch webcams based on which one you're looking at.".

Tilläggsskärmbilder

screenshot

Ladda ner Webcam Switcher-förlängningens CRX-fil

Ladda ner Webcam Switcher-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Webcam Switcher Webcam Switcher
ID bpfkkobnfcajaidebaljcggknbfocpol
Officiell webbadress https://chrome.google.com/webstore/detail/webcam-switcher/bpfkkobnfcajaidebaljcggknbfocpol
Beskrivning Switch webcams based on which one you're looking at.
Filstorlek 10.57 MB
Antal Installationer 136
Aktuell Version 1.0
Senast Uppdaterad 2022-02-15
Publiceringsdatum 2022-02-15
Utvecklare Moshe Kolodny
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/kolodny/webcam-switcher
Hjälpsida URL https://github.com/kolodny/webcam-switcher/issues
Stödda Språk 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:\/\/*\/*"
            ]
        }
    ]
}