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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Eon S. Jeon, και η κύρια λειτουργία του είναι "Provides download links for Visual Studio Code extensions that you're browsing on Visual Studio marketplace.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Visual Studio Code Extension Downloader
Λήψη αρχείων επέκτασης Visual Studio Code Extension Downloader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 |
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" ] } ] } |