Open in VS Code

Add a button to navigate from Github, Gitlab, Bitbucket and Jira to VS Code in a single click

Open in VS Code란 무엇입니까?

Open in VS Code은(는) Timmo Verlaan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a button to navigate from Github, Gitlab, Bitbucket and Jira to VS Code in a single click"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Add a simple button to navigate from Github, Gitlab, Bitbucket and Jira to VS Code with a single click. Requires 'Open Recent via URI' plugin in VS Code (https://marketplace.visualstudio.com/items?itemName=timmoverlaan.uri-open-recent).
You can also use the keyboard shortcut `Cmd+Shift+O` (Mac) or `Ctrl+Shift+O` (Win/Linux).

## Features

  * Open or clone the project in VS code on Github, Gitlab & Bitbucket
  * Open Bitbucket PR in VS code when viewing a specific PR
  * Open Jira issue in VS code

## Requirements

You need the following plugins in VS Code.

  * timmoverlaan.uri-open-recent: https://marketplace.visualstudio.com/items?itemName=timmoverlaan.uri-open-recent
  * atlassian.atlascode: https://marketplace.visualstudio.com/items?itemName=Atlassian.atlascode (only if you need extended bitbucket/jira features)

## Issues

Please report bugs and/or feature requests on GitHub.                    

확장 프로그램 기본 정보

이름 Open in VS Code Open in VS Code
ID kcplfgklelmfcockoimjkdgnlkbfgkjf
공식 URL https://chromewebstore.google.com/detail/open-in-vs-code/kcplfgklelmfcockoimjkdgnlkbfgkjf
설명 Add a button to navigate from Github, Gitlab, Bitbucket and Jira to VS Code in a single click
파일 크기 27.21 KB
설치 횟수 4,367
현재 버전 0.6.0
최근 업데이트 2021-07-22
출시 날짜 2020-12-29
평점 5.00/5 총 2 개의 평점
개발자 Timmo Verlaan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tverlaan/open-in-vscode
도움말 페이지 URL https://github.com/tverlaan/open-in-vscode/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open in VS Code",
    "version": "0.6.0",
    "description": "Add a button to navigate from Github, Gitlab, Bitbucket and Jira to VS Code in a single click",
    "manifest_version": 2,
    "author": "Timmo Verlaan",
    "homepage_url": "https:\/\/github.com\/tverlaan\/open-in-vscode",
    "page_action": {
        "default_icon": {
            "16": "images\/icon_open_vscode_16.png",
            "24": "images\/icon_open_vscode_24.png",
            "32": "images\/icon_open_vscode_32.png"
        },
        "default_title": "Open in VS Code"
    },
    "permissions": [
        "declarativeContent",
        "https:\/\/bitbucket.org\/",
        "https:\/\/*.atlassian.net\/",
        "https:\/\/github.com\/",
        "https:\/\/gitlab.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/icon_open_vscode_16.png",
        "48": "images\/icon_open_vscode_48.png",
        "128": "images\/icon_open_vscode_128.png"
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+O",
                "mac": "Command+Shift+O",
                "chromeos": "Ctrl+Shift+O",
                "linux": "Ctrl+Shift+O"
            }
        }
    }
}