Pull Request Template Generator

By utilizing a standard Pull Request (PR) Template developers can have a checklist for their coding standards.

O que é Pull Request Template Generator?

Pull Request Template Generator é uma extensão do Chrome desenvolvida por https://digital-tectonics.com, e sua principal característica é "By utilizing a standard Pull Request (PR) Template developers can have a checklist for their coding standards.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Pull Request Template Generator

Baixe arquivos de extensão Pull Request Template Generator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Pull Request Template Generator Pull Request Template Generator
ID lkpdeolhgoidcpodjdjlkjiidgljgloj
URL Oficial https://chromewebstore.google.com/detail/pull-request-template-gen/lkpdeolhgoidcpodjdjlkjiidgljgloj
Descrição By utilizing a standard Pull Request (PR) Template developers can have a checklist for their coding standards.
Tamanho do Arquivo 52.12 KB
Contagem de Instalações 54
Versão Atual 0.5.3
Última Atualização 2023-08-11
Data de Publicação 2020-02-09
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://digital-tectonics.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://digital-tectonics.com/
Idiomas Suportados 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*"
            ]
        }
    ]
}