Surf Extension
Surf github / gitlab / bitbucket repository in vscode with github.surf
What is Surf Extension?
Surf Extension is a Chrome extension developed by Softmarshmallow, and its main feature is "Surf github / gitlab / bitbucket repository in vscode with github.surf".
Extension Screenshots
Download Surf Extension Extension CRX File
Download Surf Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Surf Extension |
ID | aipkghikndfblkikafmbahbekkhmppia |
Official URL | https://chromewebstore.google.com/detail/surf-extension/aipkghikndfblkikafmbahbekkhmppia |
Description | Surf github / gitlab / bitbucket repository in vscode with github.surf |
File Size | 72.3 KB |
Installation Count | 770 |
Current Version | 0.0.2 |
Last Updated | 2021-02-21 |
Publish Date | 2021-02-14 |
Rating | 5.00/5 Total 6 Ratings |
Developer | Softmarshmallow |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/bridgedxyz/github.surf |
Help Page URL | https://github.com/bridgedxyz/github.surf/issues |
Supported Languages | 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" } } |