Pull Request Template Generator
By utilizing a standard Pull Request (PR) Template developers can have a checklist for their coding standards.
Was ist Pull Request Template Generator?
Pull Request Template Generator ist eine Chrome-Erweiterung, die von https://digital-tectonics.com entwickelt wurde, und ihr Hauptmerkmal ist "By utilizing a standard Pull Request (PR) Template developers can have a checklist for their coding standards.".
Erweiterungsscreenshots
Pull Request Template Generator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Pull Request Template Generator-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
This is used for Pull Request Details and is the standard template. With the primary focus on developers owning the code they write, it becomes more important to have a solid checklist. With this Pull Request Template, developers have a better way to see how their work will effect others. Furthermore, standardizing the pre-steps to submitting a merge request grants developers a solid base to judge possible issues that may come up in the review process. What's New: Dark Mode is HERE! Post PR Details right to the page, is HERE! More Fields Warning Color Controls Better Option storage
Grundlegende Informationen zur Erweiterung
Name | Pull Request Template Generator |
ID | lkpdeolhgoidcpodjdjlkjiidgljgloj |
Offizielle URL | https://chromewebstore.google.com/detail/pull-request-template-gen/lkpdeolhgoidcpodjdjlkjiidgljgloj |
Beschreibung | By utilizing a standard Pull Request (PR) Template developers can have a checklist for their coding standards. |
Dateigröße | 52.12 KB |
Installationsanzahl | 54 |
Aktuelle Version | 0.5.3 |
Letztes Update | 2023-08-11 |
Veröffentlichungsdatum | 2020-02-09 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://digital-tectonics.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://digital-tectonics.com/ |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pull Request Template Generator", "description": "By utilizing a standard Pull Request (PR) Template developers can have a checklist for their coding standards.", "version": "0.5.3", "manifest_version": 2, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_title": "Template Generator", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "storage", "clipboardWrite", "tabs", "activeTab" ], "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/tools.lowes.com\/stash\/projects\/MOB\/repos\/*\/pull-requests?create*" ] } ] } |