VS Code
Open GitHub and Azure Repos repositories in vscode.dev from the address bar
Was ist VS Code?
VS Code ist eine Chrome-Erweiterung, die von Microsoft entwickelt wurde, und ihr Hauptmerkmal ist "Open GitHub and Azure Repos repositories in vscode.dev from the address bar".
Erweiterungsscreenshots
VS Code-Erweiterungs-CRX-Datei herunterladen
Laden Sie VS Code-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | kobakmhnkfaghloikphojodjebdelppk |
| Offizielle URL | https://chromewebstore.google.com/detail/vs-code/kobakmhnkfaghloikphojodjebdelppk |
| Beschreibung | Open GitHub and Azure Repos repositories in vscode.dev from the address bar |
| Dateigröße | 3.07 MB |
| Installationsanzahl | 20,000 |
| Aktuelle Version | 2.6 |
| Letztes Update | 2023-03-30 |
| Veröffentlichungsdatum | 2022-09-03 |
| Bewertung | 4.38/5 Insgesamt 8 Bewertungen |
| Entwickler | Microsoft |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://vscode.dev |
| Hilfeseite URL | https://github.com/microsoft/vscode-dev-chrome-launcher/issues |
| URL der Datenschutzrichtlinien-Seite | https://aka.ms/privacy |
| Unterstützte Sprachen | 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"
}
} | |