Switchvox Screen Sharing for Switchboard

Enables screen-sharing for chrome in the switchboard

Switchvox Screen Sharing for Switchboard là gì?

Switchvox Screen Sharing for Switchboard là một tiện ích mở rộng Chrome được phát triển bởi Digium, Inc., và tính năng chính của nó là "Enables screen-sharing for chrome in the switchboard".

Ả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 Switchvox Screen Sharing for Switchboard

Tải xuống các tệp mở rộng Switchvox Screen Sharing for Switchboard 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 is for Switchvox users, and makes it possible to share your desktop computer screen in the Switchboard.                    

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

Tên Switchvox Screen Sharing for Switchboard Switchvox Screen Sharing for Switchboard
ID odnmjffmhmkbebhofkmeeejdbcofiejc
URL Chính Thức https://chromewebstore.google.com/detail/switchvox-screen-sharing/odnmjffmhmkbebhofkmeeejdbcofiejc
Mô tả Enables screen-sharing for chrome in the switchboard
Kích Thước Tệp 4.03 KB
Số Lần Cài Đặt 884
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2018-10-24
Ngày Phát Hành 2018-10-24
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Digium, Inc.
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Switchvox Screen Sharing for Switchboard",
    "description": "Enables screen-sharing for chrome in the switchboard",
    "version": "0.0.2",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "desktopCapture",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}