Surf Extension
Surf github / gitlab / bitbucket repository in vscode with github.surf
什么是Surf Extension?
Surf Extension是由Softmarshmallow开发的Chrome扩展程序,该扩展的主要功能是“Surf github / gitlab / bitbucket repository in vscode with github.surf”。
扩展截图
下载Surf Extension扩展crx文件
下载Surf Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Surf Extension |
ID | aipkghikndfblkikafmbahbekkhmppia |
官方URL | https://chromewebstore.google.com/detail/surf-extension/aipkghikndfblkikafmbahbekkhmppia |
简介 | Surf github / gitlab / bitbucket repository in vscode with github.surf |
文件大小 | 72.3 KB |
安装次数 | 770 |
当前版本 | 0.0.2 |
更新时间 | 2021-02-21 |
上架时间 | 2021-02-14 |
评分 | 5.00/5 共6次评分 |
开发者 | Softmarshmallow |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/bridgedxyz/github.surf |
帮助页面URL | https://github.com/bridgedxyz/github.surf/issues |
支持的语言 | 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" } } |