Surf Extension

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

Wat is Surf Extension?

Surf Extension is een Chrome-extensie ontwikkeld door Softmarshmallow, en de belangrijkste functie is "Surf github / gitlab / bitbucket repository in vscode with github.surf".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Surf Extension

Download Surf Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Surf Extension Surf Extension
ID aipkghikndfblkikafmbahbekkhmppia
Officiële URL https://chromewebstore.google.com/detail/surf-extension/aipkghikndfblkikafmbahbekkhmppia
Beschrijving Surf github / gitlab / bitbucket repository in vscode with github.surf
Bestandsgrootte 72.3 KB
Aantal Installaties 770
Huidige Versie 0.0.2
Laatst Bijgewerkt 2021-02-21
Publicatiedatum 2021-02-14
Beoordeling 5.00/5 Totaal 6 Beoordelingen
Ontwikkelaar Softmarshmallow
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/bridgedxyz/github.surf
Help Pagina-URL https://github.com/bridgedxyz/github.surf/issues
Ondersteunde Talen 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"
    }
}