Confrere Screensharing

Enables screen sharing in Confrere

Confrere Screensharing là gì?

Confrere Screensharing là một tiện ích mở rộng Chrome được phát triển bởi https://confrere.com, và tính năng chính của nó là "Enables screen sharing in Confrere".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Confrere Screensharing 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 enables screensharing for Confrere-based products. The extension may be installed to *.confrere.com.                    

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

Tên Confrere Screensharing Confrere Screensharing
ID okifmkhblklokdfkgaejkpmleiajepml
URL Chính Thức https://chromewebstore.google.com/detail/confrere-screensharing/okifmkhblklokdfkgaejkpmleiajepml
Mô tả Enables screen sharing in Confrere
Kích Thước Tệp 47 KB
Số Lần Cài Đặt 95
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2019-01-11
Ngày Phát Hành 2019-01-11
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://confrere.com
Loại Thanh Toán free
Trang Web Mở Rộng https://confrere.com
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Confrere Screensharing",
    "description": "Enables screen sharing in Confrere",
    "version": "1.1.1",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "icons": {
        "16": "icon-16x16.png",
        "32": "icon-32x32.png",
        "128": "icon-128x128.png",
        "192": "icon-192x192.png",
        "512": "icon-512x512.png"
    },
    "permissions": [
        "desktopCapture",
        "https:\/\/*.confrere.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/*.confrere.com\/*",
                "http:\/\/localhost:3000\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.confrere.com\/*",
            "http:\/\/localhost:3000\/*"
        ]
    }
}