CG Local

Synchronizes the CodinGame IDE with a local file so you can use your own editor.

CG Local क्या है?

CG Local Jasper van Merle द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Synchronizes the CodinGame IDE with a local file so you can use your own editor."।

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

screenshot

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

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

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

                        A browser extension which helps in synchronizing the CodinGame IDE with a local file.

Has to be used in combination with CG Local App which takes care of the local filesystem and makes configuration easy through a GUI. The download link and installation instructions can be found in this CodinGame topic:
https://www.codingame.com/forum/t/cg-local/10359/1                    

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

नाम CG Local CG Local
ID ihakjfajoihlncbnggmcmmeabclpfdgo
आधिकारिक URL https://chromewebstore.google.com/detail/cg-local/ihakjfajoihlncbnggmcmmeabclpfdgo
विवरण Synchronizes the CodinGame IDE with a local file so you can use your own editor.
फ़ाइल का आकार 34.28 KB
स्थापना संख्या 443
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2020-05-08
प्रकाशन तिथि 2020-05-07
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Jasper van Merle
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/jmerle/cg-local-ext
सहायता पृष्ठ URL https://github.com/jmerle/cg-local-ext/issues
गोपनीयता नीति पृष्ठ URL https://gist.github.com/jmerle/5f446afd17b51328e2a87aee6b475358
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CG Local",
    "description": "Synchronizes the CodinGame IDE with a local file so you can use your own editor.",
    "version": "1.1.1",
    "author": "Jasper van Merle",
    "homepage_url": "https:\/\/github.com\/jmerle\/cg-local-ext",
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "19": "icons\/icon-19.png",
        "20": "icons\/icon-20.png",
        "24": "icons\/icon-24.png",
        "32": "icons\/icon-32.png",
        "38": "icons\/icon-38.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.codingame.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "19": "icons\/icon-19.png",
            "20": "icons\/icon-20.png",
            "24": "icons\/icon-24.png",
            "32": "icons\/icon-32.png",
            "38": "icons\/icon-38.png",
            "48": "icons\/icon-48.png",
            "64": "icons\/icon-64.png",
            "96": "icons\/icon-96.png"
        },
        "default_title": "Enable CG Local",
        "browser_style": false
    }
}