GitLab File Tree
Will show a file tree on git lab merge request pages.
O que é GitLab File Tree?
GitLab File Tree é uma extensão do Chrome desenvolvida por cimpress-tech, e sua principal característica é "Will show a file tree on git lab merge request pages.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GitLab File Tree
Baixe arquivos de extensão GitLab File Tree no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
# 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.
Informações Básicas da Extensão
Nome | |
ID | binadjnphlgfehdpnphcdojcgmoednhh |
URL Oficial | https://chrome.google.com/webstore/detail/gitlab-file-tree/binadjnphlgfehdpnphcdojcgmoednhh |
Descrição | Will show a file tree on git lab merge request pages. |
Tamanho do Arquivo | 13.43 KB |
Contagem de Instalações | 87 |
Versão Atual | 1.1.1 |
Última Atualização | 2018-09-11 |
Data de Publicação | 2018-09-11 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | cimpress-tech |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Cimpress-MCP/gitlab-file-tree |
URL da Página de Ajuda | https://github.com/Cimpress-MCP/gitlab-file-tree/blob/master/readme.md |
Idiomas Suportados | 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" } ] } |