Visual Studio Code Extension Downloader
Provides download links for Visual Studio Code extensions that you're browsing on Visual Studio marketplace.
Was ist Visual Studio Code Extension Downloader?
Visual Studio Code Extension Downloader ist eine Chrome-Erweiterung, die von Eon S. Jeon entwickelt wurde, und ihr Hauptmerkmal ist "Provides download links for Visual Studio Code extensions that you're browsing on Visual Studio marketplace.".
Erweiterungsscreenshots
Visual Studio Code Extension Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Visual Studio Code Extension Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Visual Studio Code Extension Downloader |
ID | kkggidpacdaijlgpigfjpdedcffjddec |
Offizielle URL | https://chromewebstore.google.com/detail/visual-studio-code-extens/kkggidpacdaijlgpigfjpdedcffjddec |
Beschreibung | Provides download links for Visual Studio Code extensions that you're browsing on Visual Studio marketplace. |
Dateigröße | 4.2 KB |
Installationsanzahl | 4,057 |
Aktuelle Version | 0.1 |
Letztes Update | 2016-08-14 |
Veröffentlichungsdatum | 2016-08-14 |
Bewertung | 3.67/5 Insgesamt 9 Bewertungen |
Entwickler | Eon S. Jeon |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |