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文件

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