VS Code
Open GitHub and Azure Repos repositories in vscode.dev from the address bar
VS Code क्या है?
VS Code Microsoft द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Open GitHub and Azure Repos repositories in vscode.dev from the address bar"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में VS Code एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |