Surf Extension

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

Was ist Surf Extension?

Surf Extension ist eine Chrome-Erweiterung, die von Softmarshmallow entwickelt wurde, und ihr Hauptmerkmal ist "Surf github / gitlab / bitbucket repository in vscode with github.surf".

Erweiterungsscreenshots

screenshot

Surf Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Surf Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Surf Extension Surf Extension
ID aipkghikndfblkikafmbahbekkhmppia
Offizielle URL https://chromewebstore.google.com/detail/surf-extension/aipkghikndfblkikafmbahbekkhmppia
Beschreibung Surf github / gitlab / bitbucket repository in vscode with github.surf
Dateigröße 72.3 KB
Installationsanzahl 770
Aktuelle Version 0.0.2
Letztes Update 2021-02-21
Veröffentlichungsdatum 2021-02-14
Bewertung 5.00/5 Insgesamt 6 Bewertungen
Entwickler Softmarshmallow
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/bridgedxyz/github.surf
Hilfeseite URL https://github.com/bridgedxyz/github.surf/issues
Unterstützte Sprachen 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"
    }
}