MarketVSX

A bridge between vscode marketplace and open-vsx.

MarketVSX là gì?

MarketVSX là một tiện ích mở rộng Chrome được phát triển bởi GeopJr, và tính năng chính của nó là "A bridge between vscode marketplace and open-vsx.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng MarketVSX

Tải xuống các tệp mở rộng MarketVSX dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MarketVSX MarketVSX
ID fcoiikfhfempfajefakhkjlkmloihmlp
URL Chính Thức https://chromewebstore.google.com/detail/marketvsx/fcoiikfhfempfajefakhkjlkmloihmlp
Mô tả A bridge between vscode marketplace and open-vsx.
Kích Thước Tệp 26.8 KB
Số Lần Cài Đặt 33
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2021-01-26
Ngày Phát Hành 2021-01-26
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển GeopJr
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/GeopJr/MarketVSX
URL Trang Trợ Giúp https://github.com/GeopJr/MarketVSX/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}