
Conventional Comments (GitHub) - by Pullpo ์ ์์: Pullpo.io
Helps format code review comments on GitHub using the Conventional Comments standard.
์ฌ์ฉ์ 29๋ช
์ฌ์ฉ์ 29๋ช
์ด ํ์ฅ ๊ธฐ๋ฅ์ ์ฌ์ฉํ๋ ค๋ฉด Firefox๊ฐ ํ์ํจ
ํ์ฅ ๋ฉํ ๋ฐ์ดํฐ
์คํฌ๋ฆฐ์ท



์ ๋ณด
๐ฏ The Problem
Code reviews are crucial for maintaining code quality, but they often suffer from:
๐ก The Solution
Conventional Comments Helper brings the power of Conventional Comments directly into your GitHub workflow. It adds a sleek, intuitive toolbar to every comment box in GitHub, making it easy to:
โจ Features
๐จ Intuitive Toolbar: Seamlessly integrated into GitHub's interface
๐ท๏ธ Standard Labels & Decorations
๐ Toggle Functionality: Easily remove labels or decorations
๐จ Badge Style Option: Switch between text and visual badge formats
๐ Dark Mode Support: Seamlessly works with GitHub's themes
๐Useful links
Repo on GitHub: https://github.com/pullpo-io/conventional-comments
Docs: https://docs.pullpo.io/conventional-comments-getting-started
Made by https://pullpo.io/
Code reviews are crucial for maintaining code quality, but they often suffer from:
- Ambiguous or unclear feedback
- Misunderstandings about comment severity
- Difficulty in parsing and tracking different types of feedback
- Inconsistent commenting styles across team members
๐ก The Solution
Conventional Comments Helper brings the power of Conventional Comments directly into your GitHub workflow. It adds a sleek, intuitive toolbar to every comment box in GitHub, making it easy to:
- Add standardized labels to your comments (praise, suggestion, issue, etc.)
- Include decorators for additional context (non-blocking, blocking, if-minor)
- Maintain consistent formatting across all review comments
- Toggle between plain text and badge-style formatting
โจ Features
๐จ Intuitive Toolbar: Seamlessly integrated into GitHub's interface
๐ท๏ธ Standard Labels & Decorations
๐ Toggle Functionality: Easily remove labels or decorations
๐จ Badge Style Option: Switch between text and visual badge formats
๐ Dark Mode Support: Seamlessly works with GitHub's themes
๐Useful links
Repo on GitHub: https://github.com/pullpo-io/conventional-comments
Docs: https://docs.pullpo.io/conventional-comments-getting-started
Made by https://pullpo.io/
1๋ช
์ด 5์ ์ผ๋ก ํ๊ฐํจ
๊ถํ ๋ฐ ๋ฐ์ดํฐ๋ ์์๋ณด๊ธฐ
ํ์ํ ๊ถํ:
- github.com์์ ์ฌ์ฉ์์ ๋ฐ์ดํฐ์ ์ ๊ทผ
- gitlab.com์์ ์ฌ์ฉ์์ ๋ฐ์ดํฐ์ ์ ๊ทผ
์ ํ์ ๊ถํ:
- api.pullpo.io์์ ์ฌ์ฉ์์ ๋ฐ์ดํฐ์ ์ ๊ทผ
- github.com์์ ์ฌ์ฉ์์ ๋ฐ์ดํฐ์ ์ ๊ทผ
- gitlab.com์์ ์ฌ์ฉ์์ ๋ฐ์ดํฐ์ ์ ๊ทผ
์ถ๊ฐ ์ ๋ณด
- ๋ถ๊ฐ ๊ธฐ๋ฅ ๋งํฌ
- ๋ฒ์
- 0.2.4
- ํฌ๊ธฐ
- 92.32 KB
- ๋ง์ง๋ง ์ ๋ฐ์ดํธ
- 10์ผ ์ (2025๋ 9์ 11์ผ)
- ๊ด๋ จ ์นดํ ๊ณ ๋ฆฌ
- ๋ผ์ด์ ์ค
- MIT ๋ผ์ด์ ์ค
- ๋ฒ์ ๋ชฉ๋ก
- ๋ชจ์์ง์ ์ถ๊ฐ
๋ฒ์ 0.2.4์ ์ถ์ ์ ๋ณด
Fixed
โข Toolbar not appearing on the first inline comment in GitHubโs new review UI.
Previously, our extension only detected the โnewโ GitHub review experience after at least one comment existed (due to relying on div[data-testid="review-thread"]). As a result, the toolbar didnโt load for the very first comment box.
Changes
โข Improved GitHub experience detection
โข Added support for new UI markers that exist before any comments are created:
โข div[data-marker-navigation-new-thread="true"]
โข div[data-marker-id]
โข [class^="MarkdownEditor-module__container"]
โข textarea[aria-label="Markdown value"]
โข Ensures we now recognize the new review experience even when a PR has no comments.
โข Updated textarea selectors for GitHub new UI
โข Removed brittle, hashed class selectors (e.g., .prc-Textarea-TextArea-*).
โข Replaced with robust, stable selectors:
โข First inline editor:
div[data-marker-navigation-new-thread="true"] textarea[aria-label="Markdown value"]
โข Any inline thread editor:
div[data-marker-id] textarea[aria-label="Markdown value"]
โข Fallback for PR header/new comment boxes:
fieldset textarea[aria-label="Markdown value"]
Result
โข The toolbar now appears correctly on the very first comment box in GitHub PRs, matching behavior for subsequent comment boxes.
โข Toolbar not appearing on the first inline comment in GitHubโs new review UI.
Previously, our extension only detected the โnewโ GitHub review experience after at least one comment existed (due to relying on div[data-testid="review-thread"]). As a result, the toolbar didnโt load for the very first comment box.
Changes
โข Improved GitHub experience detection
โข Added support for new UI markers that exist before any comments are created:
โข div[data-marker-navigation-new-thread="true"]
โข div[data-marker-id]
โข [class^="MarkdownEditor-module__container"]
โข textarea[aria-label="Markdown value"]
โข Ensures we now recognize the new review experience even when a PR has no comments.
โข Updated textarea selectors for GitHub new UI
โข Removed brittle, hashed class selectors (e.g., .prc-Textarea-TextArea-*).
โข Replaced with robust, stable selectors:
โข First inline editor:
div[data-marker-navigation-new-thread="true"] textarea[aria-label="Markdown value"]
โข Any inline thread editor:
div[data-marker-id] textarea[aria-label="Markdown value"]
โข Fallback for PR header/new comment boxes:
fieldset textarea[aria-label="Markdown value"]
Result
โข The toolbar now appears correctly on the very first comment box in GitHub PRs, matching behavior for subsequent comment boxes.
Pullpo.io ๋์ ๋ค๋ฅธ ํ์ฅ ๊ธฐ๋ฅ
- ์์ง ํ์ ์ด ์์ต๋๋ค
- ์์ง ํ์ ์ด ์์ต๋๋ค
- ์์ง ํ์ ์ด ์์ต๋๋ค
- ์์ง ํ์ ์ด ์์ต๋๋ค
- ์์ง ํ์ ์ด ์์ต๋๋ค
- ์์ง ํ์ ์ด ์์ต๋๋ค