Quick Open in VSCode

Quickly and easily open file links in VSCode

Quick Open in VSCode क्या है?

Quick Open in VSCode Shopify द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly and easily open file links in VSCode"।

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

screenshot

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

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

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

                        When participating in code reviews, scrolling through comments and then switching to VSCode to open each comment in the editor can become a cumbersome and repetitive task.

To automate this task, Open in VSCode, can open file path links directly in VSCode.

Features
---
- Right click file path links in GitHub and open them in VSCode
- Highlight file path links anywhere and open them in VSCode
- Open all failing ruby tests at once from BuildKite CI by right clicking the test_data.json file located under the artifacts tab of a ruby test suite in BuildKite

Setup
---
1. Download and pin the Open in VSCode chrome extension. Right click the chrome extension and open the "Options" page.

2. For the base path, enter the path to where all your local repositories are located. This should generally be in the format of /Users/{local_user_name}/src/github.com/Shopify. For example, my base path was /Users/sayyant/src/github.com/Shopify

3.Save settings and exit the "Options" page. You should be good to go!                    

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

नाम Quick Open in VSCode Quick Open in VSCode
ID cidjlkdjfmegbpphjpombbpndiklpoee
आधिकारिक URL https://chromewebstore.google.com/detail/quick-open-in-vscode/cidjlkdjfmegbpphjpombbpndiklpoee
विवरण Quickly and easily open file links in VSCode
फ़ाइल का आकार 36.07 KB
स्थापना संख्या 73
वर्तमान संस्करण 0.1.0
अंतिम अपडेट 2022-09-13
प्रकाशन तिथि 2022-09-12
डेवलपर Shopify
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Shopify/open-in-vscode
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Quick Open in VSCode",
    "version": "0.1.0",
    "description": "Quickly and easily open file links in VSCode",
    "action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Quick Open in VSCode"
    },
    "author": "Sayyant Rath",
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/buildkite.com\/*",
        "https:\/\/*.googleusercontent.com\/*",
        "https:\/\/storage.cloud.google.com\/*"
    ],
    "background": {
        "service_worker": "contextmenu.js"
    },
    "options_page": "options.html",
    "homepage_url": "https:\/\/github.com\/Shopify\/open-in-vscode",
    "offline_enabled": true,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}