Confrere Screensharing

Enables screen sharing in Confrere

什麼是Confrere Screensharing?

Confrere Screensharing是由https://confrere.com開發的Chrome擴展程式,該擴展的主要功能是“Enables screen sharing in Confrere”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Confrere Screensharing擴展crx文件

下載Confrere Screensharing擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension enables screensharing for Confrere-based products. The extension may be installed to *.confrere.com.                    

擴展基本資訊

名稱 Confrere Screensharing Confrere Screensharing
ID okifmkhblklokdfkgaejkpmleiajepml
官方網址 https://chromewebstore.google.com/detail/confrere-screensharing/okifmkhblklokdfkgaejkpmleiajepml
簡介 Enables screen sharing in Confrere
檔案大小 47 KB
安裝次數 95
目前版本 1.1.1
更新時間 2019-01-11
上架時間 2019-01-11
評分 5.00/5 共 1 次評分
開發者 https://confrere.com
付費類型 free
擴展官網 https://confrere.com
支援的語言 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\/*"
        ]
    }
}