GitLab Commit File Tree
Displays a file tree on GitLab merge request and commit pages.
什么是GitLab Commit File Tree?
GitLab Commit File Tree是由Mordred开发的Chrome扩展程序,该扩展的主要功能是“Displays a file tree on GitLab merge request and commit pages.”。
扩展截图
下载GitLab Commit File Tree扩展crx文件
下载GitLab Commit File Tree扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Displays a collapsible file tree on all Merge Requests and Commit diffs. Should work on gitlab.com and private gitlab installations. Shows, new and deleted files as well as marks files which have comments. Based on the work of Jimmy Anderson and Tomáš Bončo. v2.0.0 - initial release for all gitlab repos v2.1.0 - added scroll to file, and automatic expansion of collapsed files
扩展基本信息
名称 | GitLab Commit File Tree |
ID | dgbnbphgodpcepmhcjmmmodcmkmkfibg |
官方URL | https://chromewebstore.google.com/detail/gitlab-commit-file-tree/dgbnbphgodpcepmhcjmmmodcmkmkfibg |
简介 | Displays a file tree on GitLab merge request and commit pages. |
文件大小 | 17.96 KB |
安装次数 | 64 |
当前版本 | 2.1.0 |
更新时间 | 2018-10-29 |
上架时间 | 2018-10-29 |
评分 | 3.25/5 共4次评分 |
开发者 | Mordred |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "background": { "persistent": false, "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "all_frames": true, "css": [ "css\/file-tree.css" ], "js": [ "js\/file-tree.js" ], "matches": [ "https:\/\/*\/*merge_requests\/*", "https:\/\/*\/*commit*" ], "run_at": "document_idle" } ], "description": "Displays a file tree on GitLab merge request and commit pages.", "icons": { "128": "icons\/icon128.png" }, "page_action": { "default_icon": { "128": "icons\/icon128.png", "48": "icons\/icon48.png", "38": "icons\/icon38.png", "19": "icons\/icon19.png", "16": "icons\/icon16.png" }, "default_name": "GitLab Commit File Tree", "default_title": "GitLab Commit File Tree" }, "manifest_version": 2, "name": "GitLab Commit File Tree", "permissions": [ "https:\/\/*\/", "http:\/\/*\/", "declarativeContent" ], "short_name": "GitLab Commit File Tree", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "2.1.0" } |