Github to vscode
Quickly open github repos with vscode.dev or clone a repo directly to vscode.
Qu'est-ce que Github to vscode ?
Github to vscode est une extension Chrome développée par Stavros Melidoniotis, et sa fonction principale est "Quickly open github repos with vscode.dev or clone a repo directly to vscode.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Github to vscode
Téléchargez les fichiers d'extension Github to vscode au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Github to vscode |
ID | lcajicegcfldjbnodelkdmgajajdcgjd |
URL Officiel | https://chromewebstore.google.com/detail/github-to-vscode/lcajicegcfldjbnodelkdmgajajdcgjd |
Description | Quickly open github repos with vscode.dev or clone a repo directly to vscode. |
Taille du Fichier | 15.53 KB |
Nombre d'Installations | 235 |
Version Actuelle | 1.1.2 |
Dernière Mise à Jour | 2023-05-26 |
Date de Publication | 2022-03-30 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Stavros Melidoniotis |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } |