Bitbucket Pull Request File Review
Mark individual files as reviewed in Bitbucket Pull Requests
Bitbucket Pull Request File Review란 무엇입니까?
Bitbucket Pull Request File Review은(는) vandenberghe.jeroen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Mark individual files as reviewed in Bitbucket Pull Requests"입니다.
확장 프로그램 스크린샷
Bitbucket Pull Request File Review 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
With this extension you can mark individual files as reviewed. It can help you review (big) pull requests. This extension brings you a fantastic feature of Github and an announced one for Bitbucket cloud: mark individual files of a pull request as reviewed. This extension only works with the new beta pull request experience of Atlassian Bitbucket cloud. You can enable this feature via a lab. We use the collapsible diffs feature as a way to mark files as reviewed and style them accordingly.
확장 프로그램 기본 정보
이름 | Bitbucket Pull Request File Review |
ID | bllckhlhnfngflclpdalooiehmijjbaf |
공식 URL | https://chromewebstore.google.com/detail/bitbucket-pull-request-fi/bllckhlhnfngflclpdalooiehmijjbaf |
설명 | Mark individual files as reviewed in Bitbucket Pull Requests |
파일 크기 | 6.92 KB |
설치 횟수 | 50 |
현재 버전 | 1.3 |
최근 업데이트 | 2020-12-09 |
출시 날짜 | 2020-11-24 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | vandenberghe.jeroen |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/JeroenVdb/bitbucket-pullrequest-file-review |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bitbucket Pull Request File Review", "version": "1.3", "description": "Mark individual files as reviewed in Bitbucket Pull Requests", "manifest_version": 2, "permissions": [ "https:\/\/bitbucket.org\/*\/pull-requests\/*", "webNavigation", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/bitbucket.org\/*\/pull-requests\/*" ], "js": [ "bb-pr-markfilesreviewed.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistent": false } } |