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 là gì?
Visual Studio Code Extension Downloader là một tiện ích mở rộng Chrome được phát triển bởi Eon S. Jeon, và tính năng chính của nó là "Provides download links for Visual Studio Code extensions that you're browsing on Visual Studio marketplace.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Visual Studio Code Extension Downloader
Tải xuống các tệp mở rộng Visual Studio Code Extension Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Visual Studio Code Extension Downloader |
ID | kkggidpacdaijlgpigfjpdedcffjddec |
URL Chính Thức | https://chromewebstore.google.com/detail/visual-studio-code-extens/kkggidpacdaijlgpigfjpdedcffjddec |
Mô tả | Provides download links for Visual Studio Code extensions that you're browsing on Visual Studio marketplace. |
Kích Thước Tệp | 4.2 KB |
Số Lần Cài Đặt | 4,057 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2016-08-14 |
Ngày Phát Hành | 2016-08-14 |
Đánh Giá | 3.67/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | Eon S. Jeon |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |