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. 扩展基本信息
| 名称 | |
| 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"
]
}
} | |