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…
Was ist Merge Gatekeeper for GitHub?
Merge Gatekeeper for GitHub ist eine Chrome-Erweiterung, die von https://blog.mitsuruog.info entwickelt wurde, und ihr Hauptmerkmal ist "By showing the merge destination in the close to the merge button, avoid careless mistake that merge into the sort of unexpected…".
Erweiterungsscreenshots
Merge Gatekeeper for GitHub-Erweiterungs-CRX-Datei herunterladen
Laden Sie Merge Gatekeeper for GitHub-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
ん!? このPull Request。。。。 developブランチ向けだと思ったら、マージ先がmasterブランチじゃないかーーーー! うぉぉぉぉーーー!!!! うっかりマージボタン押してしまったーーーーーーー!! あぁぁぁーーーーーー! (完) そんな悲しい経験をした方は多いのではないでしょうか? はい、私はあります。 同じ間違いは二度と起こさない。そんな自分のために作ったChrome拡張機能。それが「merge gatekeeper for github」
Grundlegende Informationen zur Erweiterung
Name | Merge Gatekeeper for GitHub |
ID | meogknoedhhdmkgcmmgdibeeinnhfnlg |
Offizielle URL | https://chromewebstore.google.com/detail/merge-gatekeeper-for-gith/meogknoedhhdmkgcmmgdibeeinnhfnlg |
Beschreibung | By showing the merge destination in the close to the merge button, avoid careless mistake that merge into the sort of unexpected… |
Dateigröße | 24.53 KB |
Installationsanzahl | 207 |
Aktuelle Version | 0.1.7 |
Letztes Update | 2021-11-26 |
Veröffentlichungsdatum | 2020-05-30 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | https://blog.mitsuruog.info |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/mitsuruog/merge-gatekeeper-for-github |
Hilfeseite URL | https://github.com/mitsuruog/merge-gatekeeper-for-github/issues |
Unterstützte Sprachen | 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 } ] } |