GitHub to Code

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

ما هو GitHub to Code؟

GitHub to Code هو إضافة Chrome تم تطويرها بواسطة maxchehab، والميزة الرئيسية لها هي "Allows developers to open GitHub repositories locally within Visual Studio Code.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة GitHub to Code

قم بتنزيل ملفات الامتداد GitHub to Code بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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."
        }
    }
}