Surf Extension

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

Surf Extension क्या है?

Surf Extension Softmarshmallow द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Surf github / gitlab / bitbucket repository in vscode with github.surf"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Surf Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ URL 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"
    }
}