MarketVSX
A bridge between vscode marketplace and open-vsx.
Cos'è MarketVSX?
MarketVSX è un'estensione di Chrome sviluppata da GeopJr, e la sua funzione principale è "A bridge between vscode marketplace and open-vsx.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione MarketVSX
Scarica i file di estensione MarketVSX in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | MarketVSX |
ID | fcoiikfhfempfajefakhkjlkmloihmlp |
URL Ufficiale | https://chromewebstore.google.com/detail/marketvsx/fcoiikfhfempfajefakhkjlkmloihmlp |
Descrizione | A bridge between vscode marketplace and open-vsx. |
Dimensione del File | 26.8 KB |
Conteggio Installazioni | 33 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2021-01-26 |
Data di Pubblicazione | 2021-01-26 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | GeopJr |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/GeopJr/MarketVSX |
URL della Pagina di Aiuto | https://github.com/GeopJr/MarketVSX/issues |
Lingue Supportate | 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" ] } } |