Surf Extension
Surf github / gitlab / bitbucket repository in vscode with github.surf
Surf Extension là gì?
Surf Extension là một tiện ích mở rộng Chrome được phát triển bởi Softmarshmallow, và tính năng chính của nó là "Surf github / gitlab / bitbucket repository in vscode with github.surf".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Surf Extension
Tải xuống các tệp mở rộng Surf Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Surf Extension |
ID | aipkghikndfblkikafmbahbekkhmppia |
URL Chính Thức | https://chromewebstore.google.com/detail/surf-extension/aipkghikndfblkikafmbahbekkhmppia |
Mô tả | Surf github / gitlab / bitbucket repository in vscode with github.surf |
Kích Thước Tệp | 72.3 KB |
Số Lần Cài Đặt | 770 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2021-02-21 |
Ngày Phát Hành | 2021-02-14 |
Đánh Giá | 5.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | Softmarshmallow |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/bridgedxyz/github.surf |
URL Trang Trợ Giúp | https://github.com/bridgedxyz/github.surf/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |