Git Pull Request Templates

Pre-populate pull requests with a template on Github and Bitbucket.

¿Qué es Git Pull Request Templates?

Git Pull Request Templates es una extensión de Chrome desarrollada por Tyler Crammond, y su función principal es "Pre-populate pull requests with a template on Github and Bitbucket.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Git Pull Request Templates

Descarga archivos de extensión Git Pull Request Templates en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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/.                    

Información Básica de la Extensión

Nombre Git Pull Request Templates Git Pull Request Templates
ID dlflgkjacacpmhdpiggkdiaieddfmkia
URL Oficial https://chromewebstore.google.com/detail/git-pull-request-template/dlflgkjacacpmhdpiggkdiaieddfmkia
Descripción Pre-populate pull requests with a template on Github and Bitbucket.
Tamaño del Archivo 64.11 KB
Cantidad de Instalaciones 403
Versión Actual 0.5.0
Última Actualización 2022-07-14
Fecha de Publicación 2019-02-24
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador Tyler Crammond
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/tcrammond/chrome-pullrequest-templates
URL de la Página de Ayuda https://github.com/tcrammond/chrome-pullrequest-templates/issues
Idiomas Soportados 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"
    ]
}