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
拡張機能の基本情報
名前 | 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 |
Eメール | [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\/*" ] } |