MarketVSX

A bridge between vscode marketplace and open-vsx.

Qu'est-ce que MarketVSX ?

MarketVSX est une extension Chrome développée par GeopJr, et sa fonction principale est "A bridge between vscode marketplace and open-vsx.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension MarketVSX

Téléchargez les fichiers d'extension MarketVSX au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom MarketVSX MarketVSX
ID fcoiikfhfempfajefakhkjlkmloihmlp
URL Officiel https://chromewebstore.google.com/detail/marketvsx/fcoiikfhfempfajefakhkjlkmloihmlp
Description A bridge between vscode marketplace and open-vsx.
Taille du Fichier 26.8 KB
Nombre d'Installations 33
Version Actuelle 1.1
Dernière Mise à Jour 2021-01-26
Date de Publication 2021-01-26
Évaluation 5.00/5 Total 2 Évaluations
Développeur GeopJr
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/GeopJr/MarketVSX
URL de la Page d'Aide https://github.com/GeopJr/MarketVSX/issues
Langues Prises en Charge 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"
        ]
    }
}