Git Pull Request Templates
Pre-populate pull requests with a template on Github and Bitbucket.
Vad är Git Pull Request Templates?
Git Pull Request Templates är en Chrome-tillägg utvecklad av Tyler Crammond, och dess huvudfunktion är "Pre-populate pull requests with a template on Github and Bitbucket.".
Tilläggsskärmbilder
Ladda ner Git Pull Request Templates-förlängningens CRX-fil
Ladda ner Git Pull Request Templates-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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/.
Grundläggande Information om Tillägg
Namn | Git Pull Request Templates |
ID | dlflgkjacacpmhdpiggkdiaieddfmkia |
Officiell webbadress | https://chromewebstore.google.com/detail/git-pull-request-template/dlflgkjacacpmhdpiggkdiaieddfmkia |
Beskrivning | Pre-populate pull requests with a template on Github and Bitbucket. |
Filstorlek | 64.11 KB |
Antal Installationer | 403 |
Aktuell Version | 0.5.0 |
Senast Uppdaterad | 2022-07-14 |
Publiceringsdatum | 2019-02-24 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | Tyler Crammond |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/tcrammond/chrome-pullrequest-templates |
Hjälpsida URL | https://github.com/tcrammond/chrome-pullrequest-templates/issues |
Stödda Språk | 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" ] } |