Webcam Switcher

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

Webcam Switcher là gì?

Webcam Switcher là một tiện ích mở rộng Chrome được phát triển bởi Moshe Kolodny, và tính năng chính của nó là "Switch webcams based on which one you're looking at.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Webcam Switcher

Tải xuống các tệp mở rộng Webcam Switcher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Webcam Switcher Webcam Switcher
ID bpfkkobnfcajaidebaljcggknbfocpol
URL Chính Thức https://chrome.google.com/webstore/detail/webcam-switcher/bpfkkobnfcajaidebaljcggknbfocpol
Mô tả Switch webcams based on which one you're looking at.
Kích Thước Tệp 10.57 MB
Số Lần Cài Đặt 136
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-02-15
Ngày Phát Hành 2022-02-15
Nhà Phát Triển Moshe Kolodny
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kolodny/webcam-switcher
URL Trang Trợ Giúp https://github.com/kolodny/webcam-switcher/issues
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
            ]
        }
    ]
}