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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |