GitLab Merge Requests lists enhancer
An extension that enhance all Merge Requests lists on any instance of Gitlab and GitLab.com.
GitLab Merge Requests lists enhancer란 무엇입니까?
GitLab Merge Requests lists enhancer은(는) Maxime "Epoc" G.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that enhance all Merge Requests lists on any instance of Gitlab and GitLab.com."입니다.
확장 프로그램 스크린샷
GitLab Merge Requests lists enhancer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
> Features - No configuration needed: install and it just works - Display source and target branches - Can be enabled/disabled in the extension preferences - Buttons allowing to easily copy these branches name (can be enabled/disabled in the extension preferences) - Button allowing to copy Merge Request information (useful when sharing the Merge Request on e.g instant messaging softwares) - Can be enabled/disabled in the extension preferences - Text format is customizable (with support of placeholders) - Direct Jira ticket link - Can be enabled/disabled in the extension preferences - Ticket ID is automatically detected in source branch name or Merge Request title - Base Jira URL is configured in extension preferences - The ticket ID or an icon can be displayed as the link label (configured in extension preferences) - WIP toggle button (can be enabled/disabled in the extension preferences) - Show an indicator when there's unresolved discussions left on Merge Requests - Can be enabled/disabled in the extension preferences - Note the "All discussions must be resolved" option must be enabled for this feature to be working as expected. This option is enabled per project and is located in Settings > General > Merge Requests > Merge checks - Compatible with all GitLab editions (GitLab CE, GitLab EE, GitLab.com) (look at the prerequisites, though) > Prerequisites GitLab 9.0 or above or GitLab.com (this addon requires GitLab API v4). > Credits Logo: GitLab and Octicons (MIT License) > Changelog https://github.com/EpocDotFr/gitlab-merge-requests-lists-enhancer/releases > License DBAD 1.1
확장 프로그램 기본 정보
이름 | GitLab Merge Requests lists enhancer |
ID | emiefdjcbfjkaofipmdcflcddcchmdkf |
공식 URL | https://chromewebstore.google.com/detail/gitlab-merge-requests-lis/emiefdjcbfjkaofipmdcflcddcchmdkf |
설명 | An extension that enhance all Merge Requests lists on any instance of Gitlab and GitLab.com. |
파일 크기 | 32.32 KB |
설치 횟수 | 177 |
현재 버전 | 1.6.0 |
최근 업데이트 | 2021-01-24 |
출시 날짜 | 2020-05-13 |
평점 | 4.50/5 총 2 개의 평점 |
개발자 | Maxime "Epoc" G. |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/EpocDotFr/gitlab-merge-requests-lists-enhancer |
도움말 페이지 URL | https://github.com/EpocDotFr/gitlab-merge-requests-lists-enhancer/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitLab Merge Requests lists enhancer", "version": "1.6.0", "description": "An extension that enhance all Merge Requests lists on any instance of Gitlab and GitLab.com.", "homepage_url": "https:\/\/github.com\/EpocDotFr\/gitlab-merge-requests-lists-enhancer", "author": "Maxime 'Epoc' G.", "icons": { "16": "images\/logo_16.png", "48": "images\/logo_48.png", "96": "images\/logo_96.png", "128": "images\/logo_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*\/*\/-\/merge_requests", "*:\/\/*\/*\/*\/-\/merge_requests?*" ], "js": [ "js\/preferences.js", "js\/content.js" ] } ], "options_ui": { "page": "html\/options.html", "open_in_tab": false, "chrome_style": true }, "permissions": [ "*:\/\/*\/*\/*\/-\/merge_requests", "*:\/\/*\/*\/*\/-\/merge_requests?*", "storage" ], "minimum_chrome_version": "66" } |