GitLab File Tree
Will show a file tree on git lab merge request pages.
GitLab File Tree là gì?
GitLab File Tree là một tiện ích mở rộng Chrome được phát triển bởi cimpress-tech, và tính năng chính của nó là "Will show a file tree on git lab merge request pages.".
Ả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 GitLab File Tree
Tải xuống các tệp mở rộng GitLab File Tree 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
# GitLab File Tree Will show a file tree on GitLab merge request pages. ## Features Adds a file tree to the left panel when viewing a merge request. * Click to go to file * Auto expands collapsed diffs * Shows files in a reasonable sort order * Differentiates between changed, deleted, and moved files * Almost looks native to GitLab ## Releases - Is now available as a chrome extension [Latest](https://cimpress.githost.io/gitlab-extensions/gitlab-file-tree/tags) ## Develop 1. Clone repository to local directory. 2. In chrome, open the Extension Management page by navigating to chrome://extensions. - The Extension Management page can also be opened by clicking on the Chrome menu, hovering over More Tools then selecting Extensions. 3. Enable Developer Mode by clicking the toggle switch next to Developer mode. 4. Click the LOAD UNPACKED button and select this folder.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | binadjnphlgfehdpnphcdojcgmoednhh |
URL Chính Thức | https://chrome.google.com/webstore/detail/gitlab-file-tree/binadjnphlgfehdpnphcdojcgmoednhh |
Mô tả | Will show a file tree on git lab merge request pages. |
Kích Thước Tệp | 13.43 KB |
Số Lần Cài Đặt | 87 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2018-09-11 |
Ngày Phát Hành | 2018-09-11 |
Đánh Giá | 3.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | cimpress-tech |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Cimpress-MCP/gitlab-file-tree |
URL Trang Trợ Giúp | https://github.com/Cimpress-MCP/gitlab-file-tree/blob/master/readme.md |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitLab File Tree", "description": "Will show a file tree on git lab merge request pages.", "short_name": "GitLab File Tree", "version": "1.1.1", "icons": { "16": "images\/GLFT.png", "48": "images\/GLFT.png", "32": "images\/GLFT.png", "128": "images\/GLFT.png" }, "permissions": [ "https:\/\/*\/", "http:\/\/*\/", "declarativeContent" ], "manifest_version": 2, "content_scripts": [ { "all_frames": true, "css": [ "filetreeinjection.css" ], "js": [ "filetreeinjection.js" ], "matches": [ "https:\/\/*.githost.io\/*merge_requests\/*" ], "run_at": "document_idle" } ] } |