Git Pull Request Templates
Pre-populate pull requests with a template on Github and Bitbucket.
什麼是Git Pull Request Templates?
Git Pull Request Templates是由Tyler Crammond開發的Chrome擴展程式,該擴展的主要功能是“Pre-populate pull requests with a template on Github and Bitbucket.”。
擴展截圖
下載Git Pull Request Templates擴展crx文件
下載Git Pull Request Templates擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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/.
擴展基本資訊
名稱 | Git Pull Request Templates |
ID | dlflgkjacacpmhdpiggkdiaieddfmkia |
官方網址 | https://chromewebstore.google.com/detail/git-pull-request-template/dlflgkjacacpmhdpiggkdiaieddfmkia |
簡介 | Pre-populate pull requests with a template on Github and Bitbucket. |
檔案大小 | 64.11 KB |
安裝次數 | 403 |
目前版本 | 0.5.0 |
更新時間 | 2022-07-14 |
上架時間 | 2019-02-24 |
評分 | 5.00/5 共 3 次評分 |
開發者 | Tyler Crammond |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/tcrammond/chrome-pullrequest-templates |
說明頁面URL | https://github.com/tcrammond/chrome-pullrequest-templates/issues |
支援的語言 | 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" ] } |