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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://blog.mitsuruog.info, και η κύρια λειτουργία του είναι "By showing the merge destination in the close to the merge button, avoid careless mistake that merge into the sort of unexpected…".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Merge Gatekeeper for GitHub

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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
        }
    ]
}