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

下載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
官方網址 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
電子郵箱 [email protected]
付費類型 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
        }
    ]
}