Merge Gatekeeper for GitHub

By showing the merge destination in the close to the merge button, avoid careless mistake that merge into the sort of unexpected…

什么是Merge Gatekeeper for GitHub?

Merge Gatekeeper for GitHub是由https://blog.mitsuruog.info开发的Chrome扩展程序,该扩展的主要功能是“By showing the merge destination in the close to the merge button, avoid careless mistake that merge into the sort of unexpected…”。

扩展截图

screenshot
screenshot
screenshot

下载Merge Gatekeeper for GitHub扩展crx文件

下载Merge Gatekeeper for GitHub扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        ん!?
このPull Request。。。。

developブランチ向けだと思ったら、マージ先がmasterブランチじゃないかーーーー!
うぉぉぉぉーーー!!!!
うっかりマージボタン押してしまったーーーーーーー!!

あぁぁぁーーーーーー!

(完)

そんな悲しい経験をした方は多いのではないでしょうか?

はい、私はあります。

同じ間違いは二度と起こさない。そんな自分のために作ったChrome拡張機能。それが「merge gatekeeper for github」                    

扩展基本信息

名称 Merge Gatekeeper for GitHub Merge Gatekeeper for GitHub
ID meogknoedhhdmkgcmmgdibeeinnhfnlg
官方URL https://chromewebstore.google.com/detail/merge-gatekeeper-for-gith/meogknoedhhdmkgcmmgdibeeinnhfnlg
简介 By showing the merge destination in the close to the merge button, avoid careless mistake that merge into the sort of unexpected…
文件大小 24.53 KB
安装次数 207
当前版本 0.1.7
更新时间 2021-11-26
上架时间 2020-05-30
评分 5.00/5 共2次评分
开发者 https://blog.mitsuruog.info
电子邮箱 mitsuru.ogawa.jp+webstore@gmail.com
付费类型 free
扩展官网 https://github.com/mitsuruog/merge-gatekeeper-for-github
帮助页面URL https://github.com/mitsuruog/merge-gatekeeper-for-github/issues
支持的语言 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.1.7",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "default_locale": "ja",
    "background": {
        "scripts": []
    },
    "permissions": [
        "storage",
        "https:\/\/github.com\/*\/*\/pull*"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*\/pull*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}