MarketVSX
A bridge between vscode marketplace and open-vsx.
MarketVSXとは何ですか?
MarketVSXはGeopJrによって開発されたChromeの拡張機能で、その主な機能は「A bridge between vscode marketplace and open-vsx.」です。
拡張機能のスクリーンショット
MarketVSX拡張機能のCRXファイルをダウンロード
MarketVSX拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | MarketVSX |
ID | fcoiikfhfempfajefakhkjlkmloihmlp |
公式URL | https://chromewebstore.google.com/detail/marketvsx/fcoiikfhfempfajefakhkjlkmloihmlp |
説明 | A bridge between vscode marketplace and open-vsx. |
ファイルサイズ | 26.8 KB |
インストール数 | 33 |
現在のバージョン | 1.1 |
最終更新日 | 2021-01-26 |
公開日 | 2021-01-26 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | GeopJr |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/GeopJr/MarketVSX |
ヘルプページのURL | https://github.com/GeopJr/MarketVSX/issues |
対応言語 | 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" ] } } |