Surf Extension
Surf github / gitlab / bitbucket repository in vscode with github.surf
Apa itu Surf Extension?
Surf Extension adalah ekstensi Chrome yang dikembangkan oleh Softmarshmallow, dan fitur utamanya adalah "Surf github / gitlab / bitbucket repository in vscode with github.surf".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Surf Extension
Unduh file ekstensi Surf Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Surf Extension |
ID | aipkghikndfblkikafmbahbekkhmppia |
URL Resmi | https://chromewebstore.google.com/detail/surf-extension/aipkghikndfblkikafmbahbekkhmppia |
Deskripsi | Surf github / gitlab / bitbucket repository in vscode with github.surf |
Ukuran File | 72.3 KB |
Jumlah Instalasi | 770 |
Versi Saat Ini | 0.0.2 |
Terakhir Diperbarui | 2021-02-21 |
Tanggal Publikasi | 2021-02-14 |
Penilaian | 5.00/5 Total 6 Penilaian |
Pengembang | Softmarshmallow |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/bridgedxyz/github.surf |
URL Halaman Bantuan | https://github.com/bridgedxyz/github.surf/issues |
Bahasa yang Didukung | 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" } } |