Gitlab Tweaks
Some functional improvements/additions for gitlab
Gitlab Tweaks란 무엇입니까?
Gitlab Tweaks은(는) gitlab-tweaks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Some functional improvements/additions for gitlab"입니다.
확장 프로그램 스크린샷
Gitlab Tweaks 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
At the moment this extension provides the following improvements. Each of them can be disabled separately. On board view issue cards: - show the amount of related merge requests - show the time tracking stats for this issue. numbers will change colors when the estimate has been passed. - allow removing an individual label directly from the issue card On the right sidebar after selecting an issue on a board: - allow removing an individual label from an issue with a single click Epic detail view: - add labels to assigned issues list - show sum of weight of issues for epic (open / closed / total) To be able to use it, you need to insert a personal gitlab token in the form that opens when you click the extension icon in the header bar. Be aware that the extension is currently limited to gitlab.com only. Changelog: ## [0.8] - 2020-12-05 ### Added - Epic Detail: show link button which leads to the issue list filtered by the shown epic ### Fixed - Issue Detail: remove duplicate "Remove label button" as gitlab now finally has it's own one - Issue Boards: adjust styling and adapt to new markup structure for "remove label" on issue cards - Issue Boards: adjust styling and adapt to new markup structure for "remove label" in right sidebar ## [0.7] - 2020-05-11 ### Added - Epic Detail: add open/closed weight - Epic Detail: render smaller labels - Epic Detail: render scoped labels properly styled ### Fixed - Epic Detail: properly position weight in header - Boards: adjust to updated markup structure and use proper icon for "remove label" ## [0.6] - 2020-05-11 ### Added - Epic Detail: show sum of weight of issues - Extension description: note that only api scope is needed for gitlab token ### Fixed - Epic Detail: always show labels in a second row for consistent layout - Epic Detail: add fallback if label data can't be found - Webstore upload through CI works again - Fix broken build ## [0.5] - 2020-03-15 ### Added - Allow one click removal of labels from issue detail view sidebar - Show labels for issues on epic detail view ### Fixed - Adjust projectPath recognition to new url schema - Adjust remove label function to new labels markup and scoped labels for all views ## [0.4] - 2019-05-12 ### Added - Use parcel/babel so import statements can be used and files can be splitted - Allow direct removal of labels from board cards - Time stats element will now turn orange if the spent/estimated ratio is greater than 1 and red if greater than 1.3 - Use new logo created by hanna - Migrate to typescript ### Updated - refactored sidebar code into own file for reusability ### Fixed - Fix regex so scripts are also triggered for unnamed boards (for projects that may only have a single board) - Remove duplicated "time estimate" data element instead of trying to weirdly merge functionalities ## [0.3] ### Added - Allow removing labels from the board sidebar ### Fixed - Use dynamic svg url for icons ## [0.2] ### Added - Show time stats on issue cards - Allow en/disabling of features ### Changed - Use MutationObserver for adding features instead of a timeout ## [0.1] - 2019-01-06 ### Added - Show amount of merge requests on issue cards
확장 프로그램 기본 정보
이름 | Gitlab Tweaks |
ID | hmapiogiaoajikopihhgbebioolhoioh |
공식 URL | https://chromewebstore.google.com/detail/gitlab-tweaks/hmapiogiaoajikopihhgbebioolhoioh |
설명 | Some functional improvements/additions for gitlab |
파일 크기 | 417 KB |
설치 횟수 | 88 |
현재 버전 | 0.8.0 |
최근 업데이트 | 2020-12-06 |
출시 날짜 | 2020-05-11 |
평점 | 3.00/5 총 1 개의 평점 |
개발자 | gitlab-tweaks |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://gitlab.com/felix.maier/gitlab-tweaks |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gitlab Tweaks", "description": "Some functional improvements\/additions for gitlab", "permissions": [ "storage", "https:\/\/*.gitlab.com\/" ], "version": "0.8.0", "manifest_version": 2, "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/gitlab.com\/*\/boards*" ], "run_at": "document_end", "js": [ "boards.js", "right-sidebar.js" ] }, { "matches": [ "https:\/\/gitlab.com\/*\/epics\/*" ], "run_at": "document_end", "js": [ "epic-detail.js" ] } ], "icons": { "16": "icons\/logo16.png", "19": "icons\/logo19.png", "38": "icons\/logo38.png", "48": "icons\/logo48.png", "128": "icons\/logo128.png" } } |