Git Pull Request Templates

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

Git Pull Request Templatesคืออะไร?

Git Pull Request Templates เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tyler Crammond และคุณลักษณะหลักของมันคือ "Pre-populate pull requests with a template on Github and Bitbucket."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Git Pull Request Templates

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}