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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |