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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides download links for Visual Studio Code extensions that you're browsing on Visual Studio marketplace."입니다.

확장 프로그램 스크린샷

screenshot

Visual Studio Code Extension Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}