Codecode Review for GitLab
Adds more features to GitLab code reviews
Codecode Review for GitLab란 무엇입니까?
Codecode Review for GitLab은(는) supergitlabcodereview에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds more features to GitLab code reviews"입니다.
확장 프로그램 스크린샷
Codecode Review for GitLab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Codecode Gitlab Code Review extension improves the UI, adds features and allow to have a better code reviewing process on Gitlab. The extension brings the following features to the basic Gitlab code review interface. 🌟 Support for multiple reviewers. In Gitlab's free tier, the ability to specify multiple reviewers or approvers on a merge request is often a missing piece of the puzzle. However, many companies require this feature to ensure a thorough code review process. This extension empowers you to specify an unlimited number of reviewers for a merge request. With this enhancement, you'll have the flexibility to involve as many team members as needed, and all the designated reviewers will be prominently displayed on both the merge request and merge request list pages. This ensures that no code change goes unnoticed, fostering a collaborative and rigorous review process. 🌟 Custom review statuses. Elevate your code review process by reacting with custom review statuses. Now, you can go beyond the standard "Approved" labels. With our extension, you can "Approve conditionally" when a merge request doesn't necessitate further review after addressing feedback, or mark your status as "Waiting" if you plan to revisit the merge request later. These distinct statuses are prominently displayed on both the merge request and merge request list pages, providing clarity and transparency throughout the review cycle. By customizing your review statuses, you can tailor your code review process to meet the unique needs of your team. 🌟 Reminders about not submitted reviews. Ensure no merge request goes unnoticed with our review reminder feature. When you set your status to "Wait" or "Approve conditionally" and there's a pending review with unsaved comments, our extension alerts you to take action. This helps you stay on top of pending reviews, maintain accountability, and streamline the review process. 🌟 Review deadlines. Keep your code reviews on track by setting review deadlines. Our extension not only allows you to establish deadlines for merge requests but also provides a countdown, highlights approaching deadlines, and sends browser notifications to ensure that you and your team are aware of and meet important review timelines. This feature promotes efficiency and ensures that code changes move through the pipeline in a timely manner. 🌟 Automatic assignee changing. Streamline the review workflow by automating the assignment of reviewers. Our extension takes care of reassigning the merge request to the next reviewer once the previous reviewer has completed their assessment. This automation reduces manual intervention, minimizes bottlenecks, and optimizes the review process for faster code deployment. 🌟 Comment labels. Maintain consistency and clarity in your comments by adding labels like "Optional" or "Praise." Our extension provides a uniform and visible way to categorize your comments, making it easier to distinguish between critical feedback and positive remarks. This feature enhances the communication within your team, ensuring that feedback is constructive and well-organized. 🌟 Marking threads as "handled". In situations where only the thread's author can resolve an issue, our extension allows you to mark a thread as "handled" without necessarily resolving it. This feature aligns with specific workflows and ensures that your code review process remains flexible and adaptable to your team's unique needs. Moreover, our extension is designed to seamlessly integrate into your Gitlab environment. Even if not everyone on your team uses the extension, it gracefully reverts to displaying basic information in comments and descriptions, ensuring a consistent and unobtrusive user experience. ❓ How does it work? Most information is stored in comments and descriptions. For example, multiple reviewers are simply specified as a special string "Reviewers: @username1 @username2". Then the extension parses the information and displays it in a convenient format. 🛡️ The plugin does not store anything outside of your browser. Enhance your code review process, foster collaboration, and expedite your code deployments with the unparalleled capabilities of our Codecode Review for GitLab extension. Elevate your code reviews to new heights! Please be aware that this Chrome extension is an independent project created by third-party developers and is not associated with GitLab . While we may appreciate and utilize GitLab's services and offerings, this extension is not officially endorsed, supported, or maintained by GitLab. The icon is created by Dave Gandy - Flaticon (https://www.flaticon.com/free-icons/check)
확장 프로그램 기본 정보
이름 | Codecode Review for GitLab |
ID | npinjojmpfjohjckpnldackfhlflmhaj |
공식 URL | https://chromewebstore.google.com/detail/codecode-review-for-gitla/npinjojmpfjohjckpnldackfhlflmhaj |
설명 | Adds more features to GitLab code reviews |
파일 크기 | 207 KB |
설치 횟수 | 53 |
현재 버전 | 2023.11.8.0 |
최근 업데이트 | 2023-11-10 |
출시 날짜 | 2023-04-25 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | supergitlabcodereview |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://codecode.pro/gitlab/changelog.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Codecode Review for GitLab", "description": "Adds more features to GitLab code reviews", "version": "2023.11.8.0", "manifest_version": 3, "background": { "service_worker": "background.js", "type": "module" }, "minimum_chrome_version": "92", "permissions": [ "activeTab", "storage", "alarms", "notifications" ], "host_permissions": [ "https:\/\/jevgenij.eu\/*", "https:\/\/www.google-analytics.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "content_script.js" ], "css": [ "content_style.css" ] } ], "web_accessible_resources": [ { "resources": [ "resources\/web\/img\/*" ], "matches": [ "https:\/\/*\/*" ] }, { "resources": [ "icons\/*" ], "matches": [ "https:\/\/*\/*" ] } ], "icons": { "48": "icons\/icon48.png", "96": "icons\/icon96.png" }, "options_ui": { "page": "options.html" }, "action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png" }, "default_popup": "popup.html" } } |