Github to vscode

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

Github to vscode란 무엇입니까?

Github to vscode은(는) Stavros Melidoniotis에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly open github repos with vscode.dev or clone a repo directly to vscode."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Github to vscode 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*"
    ]
}