Git Pull Request Templates
Pre-populate pull requests with a template on Github and Bitbucket.
Was ist Git Pull Request Templates?
Git Pull Request Templates ist eine Chrome-Erweiterung, die von Tyler Crammond entwickelt wurde, und ihr Hauptmerkmal ist "Pre-populate pull requests with a template on Github and Bitbucket.".
Erweiterungsscreenshots
Git Pull Request Templates-Erweiterungs-CRX-Datei herunterladen
Laden Sie Git Pull Request Templates-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
Pre-populate GitHub and Bitbucket pull requests with a template of your choice. Useful for teams to improve code review. Supports custom hosted repositories. Make sure to visit the extension's options page after installing! Uses Sprint.ly's template by default (https://raw.githubusercontent.com/sprintly/sprint.ly-culture/master/pr-template.md). Thanks to QuickLeft for the idea: https://quickleft.com/blog/pull-request-templates-make-code-review-easier/.
Grundlegende Informationen zur Erweiterung
Name | Git Pull Request Templates |
ID | dlflgkjacacpmhdpiggkdiaieddfmkia |
Offizielle URL | https://chromewebstore.google.com/detail/git-pull-request-template/dlflgkjacacpmhdpiggkdiaieddfmkia |
Beschreibung | Pre-populate pull requests with a template on Github and Bitbucket. |
Dateigröße | 64.11 KB |
Installationsanzahl | 403 |
Aktuelle Version | 0.5.0 |
Letztes Update | 2022-07-14 |
Veröffentlichungsdatum | 2019-02-24 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Tyler Crammond |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/tcrammond/chrome-pullrequest-templates |
Hilfeseite URL | https://github.com/tcrammond/chrome-pullrequest-templates/issues |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.5.0", "manifest_version": 3, "description": "__MSG_appDescription__", "default_locale": "en", "applications": { "gecko": { "id": "{210cf697-fb1e-445c-b0c5-06b8de83bd1d}", "strict_min_version": "50.0" } }, "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "background": { "service_worker": "scripts\/background.js" }, "options_ui": { "page": "pages\/options.html" }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/compare\/*", "*:\/\/bitbucket.org\/*\/pull-request\/new*", "*:\/\/bitbucket.org\/*\/pull-requests\/new*", "*:\/\/*\/pull-request\/*" ], "js": [ "scripts\/content.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "storage" ] } |