GitLab Details Sidebar
Adding a details view to the sidebar of GitLab boards
GitLab Details Sidebar là gì?
GitLab Details Sidebar là một tiện ích mở rộng Chrome được phát triển bởi Potato, và tính năng chính của nó là "Adding a details view to the sidebar of GitLab boards".
Ả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 Details Sidebar
Tải xuống các tệp mở rộng GitLab Details Sidebar 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
Chrome extension for GitLab to enhance its functionality. Currently this includes the addition of an "issue details" sidebar that appears when an item within a project board is clicked. Now updated to work with GitLab v14+ For using the GitLab Details Sidebar on a custom domain for GitLab: * Navigate to your custom GitLab instance * Right click on the extension icon * Select "Enable GitLab Details Sidebar on this domain" * Accept the permissions dialog * Click "Ok" to reload the page
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GitLab Details Sidebar |
ID | pmgjbjfdmgljhnnhhoccjgpabhgefnki |
URL Chính Thức | https://chromewebstore.google.com/detail/gitlab-details-sidebar/pmgjbjfdmgljhnnhhoccjgpabhgefnki |
Mô tả | Adding a details view to the sidebar of GitLab boards |
Kích Thước Tệp | 20.98 KB |
Số Lần Cài Đặt | 731 |
Phiên Bản Hiện Tại | 0.6.0 |
Cập Nhật Lần Cuối | 2021-07-20 |
Ngày Phát Hành | 2020-06-12 |
Đánh Giá | 5.00/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | Potato |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitLab Details Sidebar", "description": "Adding a details view to the sidebar of GitLab boards", "version": "0.6.0", "manifest_version": 2, "icons": { "16": "[email protected]", "32": "[email protected]", "48": "[email protected]" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/gitlab.com\/*" ], "run_at": "document_idle", "all_frames": false, "js": [ "board-enhancement.js" ], "css": [ "board-enhancement.css" ] } ], "permissions": [ "https:\/\/gitlab.com\/*", "contextMenus", "activeTab", "webRequest", "webRequestBlocking" ], "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_popup": "popup.html" }, "browser_specific_settings": { "gecko": { "id": "{4df68d77-cf6d-4ac4-829d-9ff46fedd628}" } } } |