CodinGame Screen Sharing

Screen share extension for CodinGame website

CodinGame Screen Sharingคืออะไร?

CodinGame Screen Sharing เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.codingame.com/work และคุณลักษณะหลักของมันคือ "Screen share extension for CodinGame website"

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

screenshot
screenshot
screenshot

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

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

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

                                            

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

ชื่อ CodinGame Screen Sharing CodinGame Screen Sharing
ID fjekblaegcggkkglcfocejonkhmkgkmo
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/codingame-screen-sharing/fjekblaegcggkkglcfocejonkhmkgkmo
คำอธิบาย Screen share extension for CodinGame website
ขนาดไฟล์ 6.02 KB
จำนวนการติดตั้ง 47
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2018-08-01
วันที่เผยแพร่ 2018-08-01
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://www.codingame.com/work
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.codingame.com/work
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CodinGame Screen Sharing",
    "description": "Screen share extension for CodinGame website",
    "version": "1.0.0",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "permissions": [
        "desktopCapture"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.codingame.com\/*",
                "http:\/\/localhost\/*"
            ],
            "js": [
                ".\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "logo.png"
    },
    "browser_action": {
        "default_icon": "logo.png"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.codingame.com\/*",
            "http:\/\/localhost\/*"
        ]
    }
}