Surf Extension
Surf github / gitlab / bitbucket repository in vscode with github.surf
Surf Extensionคืออะไร?
Surf Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Softmarshmallow และคุณลักษณะหลักของมันคือ "Surf github / gitlab / bitbucket repository in vscode with github.surf"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Surf Extension
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" } } |