Git flow (for Github)

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

什么是Git flow (for Github)?

Git flow (for Github)是由Jeroen Visser开发的Chrome扩展程序,该扩展的主要功能是“Adds functionality to Github for working with the Git-flow workflow.”。

扩展截图

screenshot

下载Git flow (for Github)扩展crx文件

下载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"
            ]
        }
    ]
}