Surf Extension
Surf github / gitlab / bitbucket repository in vscode with github.surf
Cos'è Surf Extension?
Surf Extension è un'estensione di Chrome sviluppata da Softmarshmallow, e la sua funzione principale è "Surf github / gitlab / bitbucket repository in vscode with github.surf".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Surf Extension
Scarica i file di estensione Surf Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Surf Extension |
ID | aipkghikndfblkikafmbahbekkhmppia |
URL Ufficiale | https://chromewebstore.google.com/detail/surf-extension/aipkghikndfblkikafmbahbekkhmppia |
Descrizione | Surf github / gitlab / bitbucket repository in vscode with github.surf |
Dimensione del File | 72.3 KB |
Conteggio Installazioni | 770 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2021-02-21 |
Data di Pubblicazione | 2021-02-14 |
Valutazione | 5.00/5 Totale 6 Valutazioni |
Sviluppatore | Softmarshmallow |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/bridgedxyz/github.surf |
URL della Pagina di Aiuto | https://github.com/bridgedxyz/github.surf/issues |
Lingue Supportate | 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" } } |