MarketVSX

A bridge between vscode marketplace and open-vsx.

ما هو MarketVSX؟

MarketVSX هو إضافة Chrome تم تطويرها بواسطة GeopJr، والميزة الرئيسية لها هي "A bridge between vscode marketplace and open-vsx.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة MarketVSX

قم بتنزيل ملفات الامتداد MarketVSX بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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 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
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/GeopJr/MarketVSX
عنوان صفحة المساعدة 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"
        ]
    }
}