MarketVSX

A bridge between vscode marketplace and open-vsx.

Was ist MarketVSX?

MarketVSX ist eine Chrome-Erweiterung, die von GeopJr entwickelt wurde, und ihr Hauptmerkmal ist "A bridge between vscode marketplace and open-vsx.".

Erweiterungsscreenshots

screenshot
screenshot

MarketVSX-Erweiterungs-CRX-Datei herunterladen

Laden Sie MarketVSX-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name MarketVSX MarketVSX
ID fcoiikfhfempfajefakhkjlkmloihmlp
Offizielle URL https://chromewebstore.google.com/detail/marketvsx/fcoiikfhfempfajefakhkjlkmloihmlp
Beschreibung A bridge between vscode marketplace and open-vsx.
Dateigröße 26.8 KB
Installationsanzahl 33
Aktuelle Version 1.1
Letztes Update 2021-01-26
Veröffentlichungsdatum 2021-01-26
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler GeopJr
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/GeopJr/MarketVSX
Hilfeseite URL https://github.com/GeopJr/MarketVSX/issues
Unterstützte Sprachen 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"
        ]
    }
}