CodinGame Screen Sharing

Screen share extension for CodinGame website

CodinGame Screen Sharing क्या है?

CodinGame Screen Sharing https://www.codingame.com/work द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Screen share extension for CodinGame website"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CodinGame Screen Sharing एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                                            

एक्सटेंशन की मूल जानकारी

नाम 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\/*"
        ]
    }
}