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 |
官方網址 | 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" } } |