Surf Extension
Surf github / gitlab / bitbucket repository in vscode with github.surf
¿Qué es Surf Extension?
Surf Extension es una extensión de Chrome desarrollada por Softmarshmallow, y su función principal es "Surf github / gitlab / bitbucket repository in vscode with github.surf".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Surf Extension
Descarga archivos de extensión Surf Extension en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Surf Extension |
ID | aipkghikndfblkikafmbahbekkhmppia |
URL Oficial | https://chromewebstore.google.com/detail/surf-extension/aipkghikndfblkikafmbahbekkhmppia |
Descripción | Surf github / gitlab / bitbucket repository in vscode with github.surf |
Tamaño del Archivo | 72.3 KB |
Cantidad de Instalaciones | 770 |
Versión Actual | 0.0.2 |
Última Actualización | 2021-02-21 |
Fecha de Publicación | 2021-02-14 |
Calificación | 5.00/5 Total de 6 Calificaciones |
Desarrollador | Softmarshmallow |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/bridgedxyz/github.surf |
URL de la Página de Ayuda | https://github.com/bridgedxyz/github.surf/issues |
Idiomas Soportados | 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" } } |