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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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