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ファイルをダウンロード

Git Pull Request Templates拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}