Git flow (for Github)

Adds functionality to Github for working with the Git-flow workflow.

Git flow (for Github)คืออะไร?

Git flow (for Github) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jeroen Visser และคุณลักษณะหลักของมันคือ "Adds functionality to Github for working with the Git-flow workflow."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Git flow (for Github)

ดาวน์โหลดไฟล์ส่วนขยาย Git flow (for Github) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension adds Git-flow functionality to Github.

Github, by default, does not offer much functionality to work with Git-flow. You still have to watch out a lot, and make sure you don't compare to the wrong branch. This extension takes that all out of your hands.

This extension also enables pull request templates.

Please submit bugs to https://github.com/jeroenvisser101/git-flow-on-github/issues                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Git flow (for Github) Git flow (for Github)
ID fdlcmnpfgnebkpnoclaalonenhhbdpnf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/git-flow-for-github/fdlcmnpfgnebkpnoclaalonenhhbdpnf
คำอธิบาย Adds functionality to Github for working with the Git-flow workflow.
ขนาดไฟล์ 218 KB
จำนวนการติดตั้ง 221
เวอร์ชันปัจจุบัน 3.0.1
อัปเดตครั้งล่าสุด 2015-09-20
วันที่เผยแพร่ 2015-09-20
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Jeroen Visser
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/jeroenvisser101/git-flow-on-github/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Jeroen Visser",
    "short_name": "Git flow",
    "name": "Git flow (for Github)",
    "version": "3.0.1",
    "manifest_version": 2,
    "description": "Adds functionality to Github for working with the Git-flow workflow.",
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png",
        "256": "icons\/icon-256.png",
        "512": "icons\/icon-512.png"
    },
    "permissions": [
        "*:\/\/*.github.com\/*",
        "storage"
    ],
    "options_page": "options\/options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                "src\/functions.js",
                "src\/common.js",
                "src\/pr-template.js",
                "src\/disable-merge-button.js",
                "src\/pr-under-construction.js",
                "src\/fix-compare.js",
                "src\/fix-title.js"
            ]
        }
    ]
}