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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add a button to navigate from Github, Gitlab, Bitbucket and Jira to VS Code in a single click"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Open in VS Code एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } } } |