MarketVSX

A bridge between vscode marketplace and open-vsx.

O que é MarketVSX?

MarketVSX é uma extensão do Chrome desenvolvida por GeopJr, e sua principal característica é "A bridge between vscode marketplace and open-vsx.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão MarketVSX

Baixe arquivos de extensão MarketVSX no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome MarketVSX MarketVSX
ID fcoiikfhfempfajefakhkjlkmloihmlp
URL Oficial https://chromewebstore.google.com/detail/marketvsx/fcoiikfhfempfajefakhkjlkmloihmlp
Descrição A bridge between vscode marketplace and open-vsx.
Tamanho do Arquivo 26.8 KB
Contagem de Instalações 33
Versão Atual 1.1
Última Atualização 2021-01-26
Data de Publicação 2021-01-26
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor GeopJr
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/GeopJr/MarketVSX
URL da Página de Ajuda https://github.com/GeopJr/MarketVSX/issues
Idiomas Suportados 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"
        ]
    }
}