VS Code
Open GitHub and Azure Repos repositories in vscode.dev from the address bar
Co to jest VS Code?
VS Code to rozszerzenie Chrome opracowane przez Microsoft, a jego główną funkcją jest „Open GitHub and Azure Repos repositories in vscode.dev from the address bar”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia VS Code
Pobierz pliki rozszerzeń VS Code w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | kobakmhnkfaghloikphojodjebdelppk |
| Oficjalny URL | https://chromewebstore.google.com/detail/vs-code/kobakmhnkfaghloikphojodjebdelppk |
| Opis | Open GitHub and Azure Repos repositories in vscode.dev from the address bar |
| Rozmiar pliku | 3.07 MB |
| Liczba instalacji | 20,000 |
| Aktualna Wersja | 2.6 |
| Ostatnia Aktualizacja | 2023-03-30 |
| Data Publikacji | 2022-09-03 |
| Ocena | 4.38/5 Łącznie 8 Oceny |
| Deweloper | Microsoft |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://vscode.dev |
| Adres URL Strony Pomocy | https://github.com/microsoft/vscode-dev-chrome-launcher/issues |
| Adres URL Strony Polityki Prywatności | https://aka.ms/privacy |
| Obsługiwane Języki | 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"
}
} | |