Surf Extension

Surf github / gitlab / bitbucket repository in vscode with github.surf

ما هو Surf Extension؟

Surf Extension هو إضافة Chrome تم تطويرها بواسطة Softmarshmallow، والميزة الرئيسية لها هي "Surf github / gitlab / bitbucket repository in vscode with github.surf".

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

screenshot

تحميل ملف CRX للإضافة Surf Extension

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

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

                        Openup your code on github.surf via Surf! button.

This can save your time by skipping clone / fork process on your development. you can also inspect your / others code on other branch than your local workspace.

- github GIST support                    

معلومات أساسية عن التمديد

الاسم Surf Extension Surf Extension
ID aipkghikndfblkikafmbahbekkhmppia
عنوان URL الرسمي https://chromewebstore.google.com/detail/surf-extension/aipkghikndfblkikafmbahbekkhmppia
الوصف Surf github / gitlab / bitbucket repository in vscode with github.surf
حجم الملف 72.3 KB
عدد التثبيتات 770
النسخة الحالية 0.0.2
آخر تحديث 2021-02-21
تاريخ النشر 2021-02-14
تقييم 5.00/5 مجموع تقييمات 6
المطور Softmarshmallow
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/bridgedxyz/github.surf
عنوان صفحة المساعدة https://github.com/bridgedxyz/github.surf/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Surf Extension",
    "version": "0.0.2",
    "permissions": [
        "storage"
    ],
    "description": "Surf github \/ gitlab \/ bitbucket repository in vscode with github.surf",
    "icons": {
        "16": "assets\/surf.png",
        "48": "assets\/surf.png",
        "128": "assets\/surf.png"
    },
    "author": "bridged.xyz authors",
    "homepage_url": "https:\/\/github.com\/bridgedxyz\/github.surf",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gist.github.com\/*\/*"
            ],
            "js": [
                "surf.gist.github.js"
            ]
        },
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "js": [
                "surf.github.js"
            ]
        },
        {
            "matches": [
                "https:\/\/gitlab.com\/*\/*"
            ],
            "js": [
                "surf.gitlab.js"
            ]
        },
        {
            "matches": [
                "https:\/\/bitbucket.com\/*\/*"
            ],
            "js": [
                "surf.bitbucket.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html"
    }
}