Git Pull Request Templates

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

Git Pull Request Templates là gì?

Git Pull Request Templates là một tiện ích mở rộng Chrome được phát triển bởi Tyler Crammond, và tính năng chính của nó là "Pre-populate pull requests with a template on Github and Bitbucket.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Git Pull Request Templates

Tải xuống các tệp mở rộng Git Pull Request Templates dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Git Pull Request Templates Git Pull Request Templates
ID dlflgkjacacpmhdpiggkdiaieddfmkia
URL Chính Thức https://chromewebstore.google.com/detail/git-pull-request-template/dlflgkjacacpmhdpiggkdiaieddfmkia
Mô tả Pre-populate pull requests with a template on Github and Bitbucket.
Kích Thước Tệp 64.11 KB
Số Lần Cài Đặt 403
Phiên Bản Hiện Tại 0.5.0
Cập Nhật Lần Cuối 2022-07-14
Ngày Phát Hành 2019-02-24
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Tyler Crammond
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tcrammond/chrome-pullrequest-templates
URL Trang Trợ Giúp https://github.com/tcrammond/chrome-pullrequest-templates/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}