Codassium Screensharing

Enables screensharing for Codassium

Codassium Screensharingคืออะไร?

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

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

screenshot

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

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

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

                        This extension adds screensharing functionality to Codassium. See: https://codassium.com                    

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

ชื่อ Codassium Screensharing Codassium Screensharing
ID aehpbllmmckgkcpdipcpffccjlmiiaog
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/codassium-screensharing/aehpbllmmckgkcpdipcpffccjlmiiaog
คำอธิบาย Enables screensharing for Codassium
ขนาดไฟล์ 5.74 KB
จำนวนการติดตั้ง 13
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2014-12-06
วันที่เผยแพร่ 2014-12-06
ผู้พัฒนา https://codassium.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://codassium.com
URL หน้าช่วยเหลือ https://codassium.com/contact
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Codassium Screensharing",
    "description": "Enables screensharing for Codassium",
    "version": "0.1.1",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "icons": {
        "48": "codassium_48.png",
        "128": "codassium_128.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/codassium.devlocal\/*",
                "https:\/\/codassium.com\/*"
            ]
        }
    ]
}