Open in VSCode

Open Github and Gitlab links in VSCode

Open in VSCode क्या है?

Open in VSCode Domenico Gemoli द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Open Github and Gitlab links in VSCode"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Open in VSCode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Just right click on any link to a file and select "Open in VSCode". You can also click on line links to open the file to the specific file.

Once you have installed, make sure to configure the extension in the options page.
You can do this by right clicking on the "Open in VSCode" icon in the extensions bar on chrome, and then selecting "Options".

Troubleshooting
---------------

The extension expects the repository you are browsing to already be cloned into the folder in the options page.

Tested with the following websites:

- Github (no line support)
- Gitlab

It might work on some other websites as well (no guarantee), if you do discover that it works on other websites please let me know so I can add it to the list!

All I see is a blank page!
--------------------------

This could be happening for numerous reasons. Make sure you have set the options correctly in the options page.
If you want, you can check what URL the extension is trying to open by enabling the debug mode in the options.
You might want to check out how VSCode handles links: https://code.visualstudio.com/docs/editor/command-line#_opening-vs-code-with-urls

Feedback
--------

If you are having any issues, or would like to request a new feature, don't hesitate to open an issue on github: https://github.com/aberonni/open-in-vscode/issues                    

एक्सटेंशन की मूल जानकारी

नाम Open in VSCode Open in VSCode
ID pfakkjlkpobjeghlgipljkjmbgcanpji
आधिकारिक URL https://chromewebstore.google.com/detail/open-in-vscode/pfakkjlkpobjeghlgipljkjmbgcanpji
विवरण Open Github and Gitlab links in VSCode
फ़ाइल का आकार 60.87 KB
स्थापना संख्या 14,061
वर्तमान संस्करण 1.4.0
अंतिम अपडेट 2022-09-14
प्रकाशन तिथि 2018-05-04
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Domenico Gemoli
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/aberonni/open-in-vscode
सहायता पृष्ठ URL https://github.com/aberonni/open-in-vscode/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Open in VSCode",
    "version": "1.4.0",
    "description": "Open Github and Gitlab links in VSCode",
    "action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Open in VSCode"
    },
    "author": "Domenico Gemoli",
    "permissions": [
        "activeTab",
        "contextMenus",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "contextmenu.js"
    },
    "options_page": "options.html",
    "homepage_url": "https:\/\/github.com\/aberonni\/open-in-vscode",
    "offline_enabled": true,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}