GitLab File Tree
Will show a file tree on git lab merge request pages.
GitLab File Tree란 무엇입니까?
GitLab File Tree은(는) cimpress-tech에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Will show a file tree on git lab merge request pages."입니다.
확장 프로그램 스크린샷
GitLab File Tree 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
# 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.
확장 프로그램 기본 정보
이름 | |
ID | binadjnphlgfehdpnphcdojcgmoednhh |
공식 URL | https://chrome.google.com/webstore/detail/gitlab-file-tree/binadjnphlgfehdpnphcdojcgmoednhh |
설명 | Will show a file tree on git lab merge request pages. |
파일 크기 | 13.43 KB |
설치 횟수 | 87 |
현재 버전 | 1.1.1 |
최근 업데이트 | 2018-09-11 |
출시 날짜 | 2018-09-11 |
평점 | 3.00/5 총 2 개의 평점 |
개발자 | cimpress-tech |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Cimpress-MCP/gitlab-file-tree |
도움말 페이지 URL | https://github.com/Cimpress-MCP/gitlab-file-tree/blob/master/readme.md |
지원되는 언어 | 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" } ] } |