Git Pull Request Templates

Pre-populate pull requests with a template on Github and Bitbucket.

Git Pull Request Templates란 무엇입니까?

Git Pull Request Templates은(는) Tyler Crammond에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pre-populate pull requests with a template on Github and Bitbucket."입니다.

확장 프로그램 스크린샷

screenshot

Git Pull Request Templates 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Pre-populate GitHub and Bitbucket pull requests with a template of your choice. Useful for teams to improve code review.

Supports custom hosted repositories. Make sure to visit the extension's options page after installing!

Uses Sprint.ly's template by default (https://raw.githubusercontent.com/sprintly/sprint.ly-culture/master/pr-template.md). Thanks to QuickLeft for the idea: https://quickleft.com/blog/pull-request-templates-make-code-review-easier/.                    

확장 프로그램 기본 정보

이름 Git Pull Request Templates Git Pull Request Templates
ID dlflgkjacacpmhdpiggkdiaieddfmkia
공식 URL https://chromewebstore.google.com/detail/git-pull-request-template/dlflgkjacacpmhdpiggkdiaieddfmkia
설명 Pre-populate pull requests with a template on Github and Bitbucket.
파일 크기 64.11 KB
설치 횟수 403
현재 버전 0.5.0
최근 업데이트 2022-07-14
출시 날짜 2019-02-24
평점 5.00/5 총 3 개의 평점
개발자 Tyler Crammond
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tcrammond/chrome-pullrequest-templates
도움말 페이지 URL https://github.com/tcrammond/chrome-pullrequest-templates/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.5.0",
    "manifest_version": 3,
    "description": "__MSG_appDescription__",
    "default_locale": "en",
    "applications": {
        "gecko": {
            "id": "{210cf697-fb1e-445c-b0c5-06b8de83bd1d}",
            "strict_min_version": "50.0"
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "options_ui": {
        "page": "pages\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/compare\/*",
                "*:\/\/bitbucket.org\/*\/pull-request\/new*",
                "*:\/\/bitbucket.org\/*\/pull-requests\/new*",
                "*:\/\/*\/pull-request\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "storage"
    ]
}