MarketVSX

A bridge between vscode marketplace and open-vsx.

Vad är MarketVSX?

MarketVSX är en Chrome-tillägg utvecklad av GeopJr, och dess huvudfunktion är "A bridge between vscode marketplace and open-vsx.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner MarketVSX-förlängningens CRX-fil

Ladda ner MarketVSX-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn MarketVSX MarketVSX
ID fcoiikfhfempfajefakhkjlkmloihmlp
Officiell webbadress https://chromewebstore.google.com/detail/marketvsx/fcoiikfhfempfajefakhkjlkmloihmlp
Beskrivning A bridge between vscode marketplace and open-vsx.
Filstorlek 26.8 KB
Antal Installationer 33
Aktuell Version 1.1
Senast Uppdaterad 2021-01-26
Publiceringsdatum 2021-01-26
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare GeopJr
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/GeopJr/MarketVSX
Hjälpsida URL https://github.com/GeopJr/MarketVSX/issues
Stödda Språk 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"
        ]
    }
}