MarketVSX
A bridge between vscode marketplace and open-vsx.
Co to jest MarketVSX?
MarketVSX to rozszerzenie Chrome opracowane przez GeopJr, a jego główną funkcją jest „A bridge between vscode marketplace and open-vsx.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia MarketVSX
Pobierz pliki rozszerzeń MarketVSX w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | fcoiikfhfempfajefakhkjlkmloihmlp |
| Oficjalny URL | https://chromewebstore.google.com/detail/marketvsx/fcoiikfhfempfajefakhkjlkmloihmlp |
| Opis | A bridge between vscode marketplace and open-vsx. |
| Rozmiar pliku | 26.8 KB |
| Liczba instalacji | 33 |
| Aktualna Wersja | 1.1 |
| Ostatnia Aktualizacja | 2021-01-26 |
| Data Publikacji | 2021-01-26 |
| Ocena | 5.00/5 Łącznie 2 Oceny |
| Deweloper | GeopJr |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/GeopJr/MarketVSX |
| Adres URL Strony Pomocy | https://github.com/GeopJr/MarketVSX/issues |
| Obsługiwane Języki | 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"
]
}
} | |