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.”。
擴展截圖
下載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
擴展基本資訊
名稱 | |
ID | lcajicegcfldjbnodelkdmgajajdcgjd |
官方網址 | 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\/*" ] } |