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
Eメール [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"
        }
    ]
}