Confrere Screensharing

Enables screen sharing in Confrere

Confrere Screensharingคืออะไร?

Confrere Screensharing เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://confrere.com และคุณลักษณะหลักของมันคือ "Enables screen sharing in Confrere"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Confrere Screensharing

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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\/*"
        ]
    }
}