Visual Studio Code Extension Downloader
Provides download links for Visual Studio Code extensions that you're browsing on Visual Studio marketplace.
Vad är Visual Studio Code Extension Downloader?
Visual Studio Code Extension Downloader är en Chrome-tillägg utvecklad av Eon S. Jeon, och dess huvudfunktion är "Provides download links for Visual Studio Code extensions that you're browsing on Visual Studio marketplace.".
Tilläggsskärmbilder
Ladda ner Visual Studio Code Extension Downloader-förlängningens CRX-fil
Ladda ner Visual Studio Code Extension Downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Visual Studio Code Extension Downloader |
ID | kkggidpacdaijlgpigfjpdedcffjddec |
Officiell webbadress | https://chromewebstore.google.com/detail/visual-studio-code-extens/kkggidpacdaijlgpigfjpdedcffjddec |
Beskrivning | Provides download links for Visual Studio Code extensions that you're browsing on Visual Studio marketplace. |
Filstorlek | 4.2 KB |
Antal Installationer | 4,057 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2016-08-14 |
Publiceringsdatum | 2016-08-14 |
Betyg | 3.67/5 Totalt 9 Betyg |
Utvecklare | Eon S. Jeon |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |