MarketVSX
A bridge between vscode marketplace and open-vsx.
What is MarketVSX?
MarketVSX is a Chrome extension developed by GeopJr, and its main feature is "A bridge between vscode marketplace and open-vsx.".
Extension Screenshots
Download MarketVSX Extension CRX File
Download MarketVSX extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | MarketVSX |
ID | fcoiikfhfempfajefakhkjlkmloihmlp |
Official URL | https://chromewebstore.google.com/detail/marketvsx/fcoiikfhfempfajefakhkjlkmloihmlp |
Description | A bridge between vscode marketplace and open-vsx. |
File Size | 26.8 KB |
Installation Count | 33 |
Current Version | 1.1 |
Last Updated | 2021-01-26 |
Publish Date | 2021-01-26 |
Rating | 5.00/5 Total 2 Ratings |
Developer | GeopJr |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/GeopJr/MarketVSX |
Help Page URL | https://github.com/GeopJr/MarketVSX/issues |
Supported Languages | 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" ] } } |