MarketVSX
A bridge between vscode marketplace and open-vsx.
什麼是MarketVSX?
MarketVSX是由GeopJr開發的Chrome擴展程式,該擴展的主要功能是“A bridge between vscode marketplace and open-vsx.”。
擴展截圖
下載MarketVSX擴展crx文件
下載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 |
官方網址 | 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" ] } } |