MarketVSX
A bridge between vscode marketplace and open-vsx.
MarketVSXคืออะไร?
MarketVSX เป็นส่วนขยายของ Chrome ที่พัฒนาโดย GeopJr และคุณลักษณะหลักของมันคือ "A bridge between vscode marketplace and open-vsx."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MarketVSX
ดาวน์โหลดไฟล์ส่วนขยาย MarketVSX ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension adds a button next to an extension on https://marketplace.visualstudio.com/ that will either send the user to open-vsx.org, if the extension is available there, or download its .vsix file. You can find much more info and screenshots on the github repo: https://github.com/GeopJr/MarketVSX.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | MarketVSX |
ID | fcoiikfhfempfajefakhkjlkmloihmlp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/marketvsx/fcoiikfhfempfajefakhkjlkmloihmlp |
คำอธิบาย | A bridge between vscode marketplace and open-vsx. |
ขนาดไฟล์ | 26.8 KB |
จำนวนการติดตั้ง | 33 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2021-01-26 |
วันที่เผยแพร่ | 2021-01-26 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | GeopJr |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/GeopJr/MarketVSX |
URL หน้าช่วยเหลือ | https://github.com/GeopJr/MarketVSX/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MarketVSX", "version": "1.1", "description": "A bridge between vscode marketplace and open-vsx.", "author": "GeopJr", "homepage_url": "https:\/\/github.com\/GeopJr\/MarketVSX\/", "icons": { "48": "icons\/icon-48.png", "96": "icons\/icon-96.png", "128": "icons\/icon-128.png", "256": "icons\/icon-256.png", "512": "icons\/icon-512.png" }, "content_scripts": [ { "matches": [ "*:\/\/marketplace.visualstudio.com\/*" ], "js": [ "marketvsx.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] } } |