Pull Request Template Generator
By utilizing a standard Pull Request (PR) Template developers can have a checklist for their coding standards.
Τι είναι το Pull Request Template Generator;
Το Pull Request Template Generator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://digital-tectonics.com, και η κύρια λειτουργία του είναι "By utilizing a standard Pull Request (PR) Template developers can have a checklist for their coding standards.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Pull Request Template Generator
Λήψη αρχείων επέκτασης Pull Request Template Generator σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Pull Request Template Generator |
ID | lkpdeolhgoidcpodjdjlkjiidgljgloj |
Επίσημο URL | https://chromewebstore.google.com/detail/pull-request-template-gen/lkpdeolhgoidcpodjdjlkjiidgljgloj |
Περιγραφή | By utilizing a standard Pull Request (PR) Template developers can have a checklist for their coding standards. |
Μέγεθος Αρχείου | 52.12 KB |
Αριθμός Εγκαταστάσεων | 54 |
Τρέχουσα Έκδοση | 0.5.3 |
Τελευταία Ενημέρωση | 2023-08-11 |
Ημερομηνία Δημοσίευσης | 2020-02-09 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | https://digital-tectonics.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://digital-tectonics.com/ |
Υποστηριζόμενες Γλώσσες | 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*" ] } ] } |