Surf Extension

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

Qu'est-ce que Surf Extension ?

Surf Extension est une extension Chrome développée par Softmarshmallow, et sa fonction principale est "Surf github / gitlab / bitbucket repository in vscode with github.surf".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Surf Extension

Téléchargez les fichiers d'extension Surf Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Surf Extension Surf Extension
ID aipkghikndfblkikafmbahbekkhmppia
URL Officiel https://chromewebstore.google.com/detail/surf-extension/aipkghikndfblkikafmbahbekkhmppia
Description Surf github / gitlab / bitbucket repository in vscode with github.surf
Taille du Fichier 72.3 KB
Nombre d'Installations 770
Version Actuelle 0.0.2
Dernière Mise à Jour 2021-02-21
Date de Publication 2021-02-14
Évaluation 5.00/5 Total 6 Évaluations
Développeur Softmarshmallow
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/bridgedxyz/github.surf
URL de la Page d'Aide https://github.com/bridgedxyz/github.surf/issues
Langues Prises en Charge 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"
    }
}