GitHub to Code

Allows developers to open GitHub repositories locally within Visual Studio Code.

GitHub to Code क्या है?

GitHub to Code maxchehab द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows developers to open GitHub repositories locally within Visual Studio Code."।

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

screenshot
screenshot
screenshot

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

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

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

                        Features: 
- Custom keyboard shortcut
- Fast setup
- Open from file page, inline markdown, or a code review                    

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

नाम GitHub to Code GitHub to Code
ID nmhejamhnhhhegjaalgklaeeladhkaph
आधिकारिक URL https://chrome.google.com/webstore/detail/github-to-code/nmhejamhnhhhegjaalgklaeeladhkaph
विवरण Allows developers to open GitHub repositories locally within Visual Studio Code.
फ़ाइल का आकार 6.05 MB
स्थापना संख्या 139
वर्तमान संस्करण 0.0.4
अंतिम अपडेट 2019-10-08
प्रकाशन तिथि 2019-10-08
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर maxchehab
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/maxchehab/gh-code
सहायता पृष्ठ URL https://github.com/maxchehab/gh-code
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub to Code",
    "version": "0.0.4",
    "description": "Allows developers to open GitHub repositories locally within Visual Studio Code.",
    "icons": {
        "48": "icons\/code-logo.png"
    },
    "applications": {
        "gecko": {
            "id": "{b58eb207-8f2e-41ce-a28e-3046f1e92a5f}"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                ".\/common\/utils\/polyfill.util.js",
                ".\/extension\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "tabs",
        ""
    ],
    "web_accessible_resources": [
        "icons\/code-logo.png",
        "next\/out\/*"
    ],
    "background": {
        "scripts": [
            ".\/common\/utils\/polyfill.util.js",
            ".\/extension\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/code-logo.png",
        "default_title": "Github to Code",
        "default_popup": "next\/out\/index.html",
        "browser_style": true
    },
    "commands": {
        "open-repo-or-file": {
            "suggested_key": {
                "default": "Ctrl+G",
                "mac": "MacCtrl+G"
            },
            "description": "Open current repository or file."
        }
    }
}