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."입니다.

확장 프로그램 스크린샷

screenshot

Pull Request Template Generator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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*"
            ]
        }
    ]
}