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 là gì?

Merge Gatekeeper for GitHub là một tiện ích mở rộng Chrome được phát triển bởi https://blog.mitsuruog.info, và tính năng chính của nó là "By showing the merge destination in the close to the merge button, avoid careless mistake that merge into the sort of unexpected…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Merge Gatekeeper for GitHub

Tải xuống các tệp mở rộng Merge Gatekeeper for GitHub dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        ん!?
このPull Request。。。。

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

あぁぁぁーーーーーー!

(完)

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

はい、私はあります。

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Merge Gatekeeper for GitHub Merge Gatekeeper for GitHub
ID meogknoedhhdmkgcmmgdibeeinnhfnlg
URL Chính Thức https://chromewebstore.google.com/detail/merge-gatekeeper-for-gith/meogknoedhhdmkgcmmgdibeeinnhfnlg
Mô tả By showing the merge destination in the close to the merge button, avoid careless mistake that merge into the sort of unexpected…
Kích Thước Tệp 24.53 KB
Số Lần Cài Đặt 207
Phiên Bản Hiện Tại 0.1.7
Cập Nhật Lần Cuối 2021-11-26
Ngày Phát Hành 2020-05-30
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://blog.mitsuruog.info
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mitsuruog/merge-gatekeeper-for-github
URL Trang Trợ Giúp https://github.com/mitsuruog/merge-gatekeeper-for-github/issues
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}