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" ] } ] } |