Github to vscode

Quickly open github repos with vscode.dev or clone a repo directly to vscode.

ما هو Github to vscode؟

Github to vscode هو إضافة Chrome تم تطويرها بواسطة Stavros Melidoniotis، والميزة الرئيسية لها هي "Quickly open github repos with vscode.dev or clone a repo directly to vscode.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Github to vscode

قم بتنزيل ملفات الامتداد Github to vscode بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extensions adds some extra functionalities to github.com. It provides a fast and simple way of cloning a repository directly to vscode with the click of a button and also allows opening a repository or file of a repository with vscode.dev, by right clicking anywhere on the web page and selecting "Open with vscode.dev".

Keyboard shortcuts:

Cloning a repository: Ctrl + Shift + Down
Opening in vscode.dev: Ctrl + Shift + Up                    

معلومات أساسية عن التمديد

الاسم Github to vscode Github to vscode
ID lcajicegcfldjbnodelkdmgajajdcgjd
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-to-vscode/lcajicegcfldjbnodelkdmgajajdcgjd
الوصف Quickly open github repos with vscode.dev or clone a repo directly to vscode.
حجم الملف 15.53 KB
عدد التثبيتات 235
النسخة الحالية 1.1.2
آخر تحديث 2023-05-26
تاريخ النشر 2022-03-30
تقييم 5.00/5 مجموع تقييمات 2
المطور Stavros Melidoniotis
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github to vscode",
    "description": "Quickly open github repos with vscode.dev or clone a repo directly to vscode.",
    "version": "1.1.2",
    "manifest_version": 3,
    "icons": {
        "48": ".\/images\/icons\/icon-48.png",
        "128": ".\/images\/icons\/icon-128.png"
    },
    "background": {
        "service_worker": ".\/background.js"
    },
    "commands": {
        "clone-in-vscode": {
            "suggested_key": {
                "default": "Ctrl+Shift+Down",
                "mac": "Command+Shift+Down"
            },
            "description": "Clone a Github repo directly to vscode"
        },
        "open-with-vscodedev": {
            "suggested_key": {
                "default": "Ctrl+Shift+Up",
                "mac": "Command+Shift+Up"
            },
            "description": "Quickly open Github repos with vscode.dev"
        }
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/github.com\/*"
    ]
}