Visual Studio Code Extension Downloader

Provides download links for Visual Studio Code extensions that you're browsing on Visual Studio marketplace.

Visual Studio Code Extension Downloader क्या है?

Visual Studio Code Extension Downloader Eon S. Jeon द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provides download links for Visual Studio Code extensions that you're browsing on Visual Studio marketplace."।

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

screenshot

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

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

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

                        This is a simple extension which adds a direct download link to the package files on Visual Studio Marketplace( https://marketplace.visualstudio.com/ ) , allowing you to download package files directly.

This is useful if
1) You want to keep package files, just in case.
2) You're planning to use VSCode on a computer with restricted/isolated network.
3) Your (or your team's) development environment has to be strictly controlled.

I made this for me, but hope some people find this useful. Good luck!


[Trademark Disclaimer]
All product and company names are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.                    

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

नाम Visual Studio Code Extension Downloader Visual Studio Code Extension Downloader
ID kkggidpacdaijlgpigfjpdedcffjddec
आधिकारिक URL https://chromewebstore.google.com/detail/visual-studio-code-extens/kkggidpacdaijlgpigfjpdedcffjddec
विवरण Provides download links for Visual Studio Code extensions that you're browsing on Visual Studio marketplace.
फ़ाइल का आकार 4.2 KB
स्थापना संख्या 4,057
वर्तमान संस्करण 0.1
अंतिम अपडेट 2016-08-14
प्रकाशन तिथि 2016-08-14
रेटिंग 3.67/5 कुल 9 रेटिंग्स
डेवलपर Eon S. Jeon
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Visual Studio Code Extension Downloader",
    "short_name": "VSCED",
    "description": "Provides download links for Visual Studio Code extensions that you're browsing on Visual Studio marketplace.",
    "version": "0.1",
    "permissions": [
        "downloads"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/marketplace.visualstudio.com\/items?*"
            ],
            "js": [
                "content-item.js"
            ]
        }
    ]
}