VS Code
Open GitHub and Azure Repos repositories in vscode.dev from the address bar
Cos'è VS Code?
VS Code è un'estensione di Chrome sviluppata da Microsoft, e la sua funzione principale è "Open GitHub and Azure Repos repositories in vscode.dev from the address bar".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione VS Code
Scarica i file di estensione VS Code in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
https://vscode.dev allows you to use Visual Studio Code in your browser. This extension allows you to quickly get to any GitHub repository in https://vscode.dev. Simply type `code` to trigger the omnibox and open your recent GitHub repositories in vscode.dev. Alternatively, use the extension's Ctrl+. shortcut to open a GitHub pr Azure Repos repository page in https://vscode.dev, or click the extension icon. By installing this extension, you agree to these terms and conditions: Terms of Use: https://www.microsoft.com/en-us/legal/terms-of-use Privacy Policy: https://privacy.microsoft.com/en-US/privacystatement
Informazioni di Base sull'Estensione
Nome | VS Code |
ID | kobakmhnkfaghloikphojodjebdelppk |
URL Ufficiale | https://chromewebstore.google.com/detail/vs-code/kobakmhnkfaghloikphojodjebdelppk |
Descrizione | Open GitHub and Azure Repos repositories in vscode.dev from the address bar |
Dimensione del File | 3.07 MB |
Conteggio Installazioni | 20,000 |
Versione Corrente | 2.6 |
Ultimo Aggiornamento | 2023-03-30 |
Data di Pubblicazione | 2022-09-03 |
Valutazione | 4.38/5 Totale 8 Valutazioni |
Sviluppatore | Microsoft |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://vscode.dev |
URL della Pagina di Aiuto | https://github.com/microsoft/vscode-dev-chrome-launcher/issues |
URL della Pagina della Politica sulla Privacy | https://aka.ms/privacy |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "VS Code", "version": "2.6", "description": "Open GitHub and Azure Repos repositories in vscode.dev from the address bar", "action": { "default_icon": "vscode.png" }, "background": { "service_worker": "eventPage.js" }, "icons": { "16": "vscode.png", "48": "vscode.png", "128": "vscode.png" }, "commands": { "launchVSCode": { "suggested_key": { "default": "Ctrl+Period", "mac": "Command+Period" }, "description": "Launch vscode.dev" } }, "options_ui": { "page": "options.html" }, "permissions": [ "tabs", "history", "storage" ], "omnibox": { "keyword": "code" } } |