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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } ] } |