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.”。

扩展截图

screenshot

下载GitLab File Tree扩展crx文件

下载GitLab File Tree扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        # 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.                    

扩展基本信息

名称 GitLab File Tree GitLab File Tree
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"
        }
    ]
}