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是由https://digital-tectonics.com开发的Chrome扩展程序,该扩展的主要功能是“By utilizing a standard Pull Request (PR) Template developers can have a checklist for their coding standards.”。
扩展截图
下载Pull Request Template Generator扩展crx文件
下载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*" ] } ] } |