VS Code

Open GitHub and Azure Repos repositories in vscode.dev from the address bar

VS Code란 무엇입니까?

VS Code은(는) Microsoft에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open GitHub and Azure Repos repositories in vscode.dev from the address bar"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

VS Code 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 VS Code VS Code
ID kobakmhnkfaghloikphojodjebdelppk
공식 URL https://chromewebstore.google.com/detail/vs-code/kobakmhnkfaghloikphojodjebdelppk
설명 Open GitHub and Azure Repos repositories in vscode.dev from the address bar
파일 크기 3.07 MB
설치 횟수 20,000
현재 버전 2.6
최근 업데이트 2023-03-30
출시 날짜 2022-09-03
평점 4.38/5 총 8 개의 평점
개발자 Microsoft
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://vscode.dev
도움말 페이지 URL https://github.com/microsoft/vscode-dev-chrome-launcher/issues
개인정보 보호 정책 페이지 URL https://aka.ms/privacy
지원되는 언어 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"
    }
}