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”。
擴展截圖
下載Open in VS Code擴展crx文件
下載Open in VS Code擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | kcplfgklelmfcockoimjkdgnlkbfgkjf |
| 官方網址 | 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"
}
}
}
} | |