Multiparty-Meeting Screen Sharing

This extension allows you to share your screen in the multiparty web-meeting you are in.

Multiparty-Meeting Screen Sharingคืออะไร?

Multiparty-Meeting Screen Sharing เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://akademia.no และคุณลักษณะหลักของมันคือ "This extension allows you to share your screen in the multiparty web-meeting you are in."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Multiparty-Meeting Screen Sharing

ดาวน์โหลดไฟล์ส่วนขยาย Multiparty-Meeting Screen Sharing ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Open source extension for sharing your screen in web meetings.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Multiparty-Meeting Screen Sharing Multiparty-Meeting Screen Sharing
ID fckajcjdaabdgnbdcmhhebdglogjfodi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/multiparty-meeting-screen/fckajcjdaabdgnbdcmhhebdglogjfodi
คำอธิบาย This extension allows you to share your screen in the multiparty web-meeting you are in.
ขนาดไฟล์ 11.19 KB
จำนวนการติดตั้ง 95
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2018-09-18
วันที่เผยแพร่ 2018-09-18
ผู้พัฒนา https://akademia.no
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/havfo/multiparty-meeting-extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Multiparty-Meeting Screen Sharing",
    "short_name": "Screen Sharing",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "This extension allows you to share your screen in the multiparty web-meeting you are in.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "desktopCapture",
        "tabs",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ]
}