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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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*"
]
}
]
} | |