MarketVSX

A bridge between vscode marketplace and open-vsx.

Apa itu MarketVSX?

MarketVSX adalah ekstensi Chrome yang dikembangkan oleh GeopJr, dan fitur utamanya adalah "A bridge between vscode marketplace and open-vsx.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi MarketVSX

Unduh file ekstensi MarketVSX dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama MarketVSX MarketVSX
ID fcoiikfhfempfajefakhkjlkmloihmlp
URL Resmi https://chromewebstore.google.com/detail/marketvsx/fcoiikfhfempfajefakhkjlkmloihmlp
Deskripsi A bridge between vscode marketplace and open-vsx.
Ukuran File 26.8 KB
Jumlah Instalasi 33
Versi Saat Ini 1.1
Terakhir Diperbarui 2021-01-26
Tanggal Publikasi 2021-01-26
Penilaian 5.00/5 Total 2 Penilaian
Pengembang GeopJr
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/GeopJr/MarketVSX
URL Halaman Bantuan https://github.com/GeopJr/MarketVSX/issues
Bahasa yang Didukung 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"
        ]
    }
}