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…

O que é Merge Gatekeeper for GitHub?

Merge Gatekeeper for GitHub é uma extensão do Chrome desenvolvida por https://blog.mitsuruog.info, e sua principal característica é "By showing the merge destination in the close to the merge button, avoid careless mistake that merge into the sort of unexpected…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Merge Gatekeeper for GitHub

Baixe arquivos de extensão Merge Gatekeeper for GitHub no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        ん!?
このPull Request。。。。

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

あぁぁぁーーーーーー!

(完)

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

はい、私はあります。

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

Informações Básicas da Extensão

Nome Merge Gatekeeper for GitHub Merge Gatekeeper for GitHub
ID meogknoedhhdmkgcmmgdibeeinnhfnlg
URL Oficial https://chromewebstore.google.com/detail/merge-gatekeeper-for-gith/meogknoedhhdmkgcmmgdibeeinnhfnlg
Descrição By showing the merge destination in the close to the merge button, avoid careless mistake that merge into the sort of unexpected…
Tamanho do Arquivo 24.53 KB
Contagem de Instalações 207
Versão Atual 0.1.7
Última Atualização 2021-11-26
Data de Publicação 2020-05-30
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://blog.mitsuruog.info
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mitsuruog/merge-gatekeeper-for-github
URL da Página de Ajuda https://github.com/mitsuruog/merge-gatekeeper-for-github/issues
Idiomas Suportados 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
        }
    ]
}