Surf Extension
Surf github / gitlab / bitbucket repository in vscode with github.surf
O que é Surf Extension?
Surf Extension é uma extensão do Chrome desenvolvida por Softmarshmallow, e sua principal característica é "Surf github / gitlab / bitbucket repository in vscode with github.surf".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Surf Extension
Baixe arquivos de extensão Surf Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Surf Extension |
ID | aipkghikndfblkikafmbahbekkhmppia |
URL Oficial | https://chromewebstore.google.com/detail/surf-extension/aipkghikndfblkikafmbahbekkhmppia |
Descrição | Surf github / gitlab / bitbucket repository in vscode with github.surf |
Tamanho do Arquivo | 72.3 KB |
Contagem de Instalações | 770 |
Versão Atual | 0.0.2 |
Última Atualização | 2021-02-21 |
Data de Publicação | 2021-02-14 |
Classificação | 5.00/5 Total de 6 Avaliações |
Desenvolvedor | Softmarshmallow |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/bridgedxyz/github.surf |
URL da Página de Ajuda | https://github.com/bridgedxyz/github.surf/issues |
Idiomas Suportados | 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" } } |