Git Pull Request Templates

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

Cos'è Git Pull Request Templates?

Git Pull Request Templates è un'estensione di Chrome sviluppata da Tyler Crammond, e la sua funzione principale è "Pre-populate pull requests with a template on Github and Bitbucket.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Git Pull Request Templates

Scarica i file di estensione Git Pull Request Templates in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Git Pull Request Templates Git Pull Request Templates
ID dlflgkjacacpmhdpiggkdiaieddfmkia
URL Ufficiale https://chromewebstore.google.com/detail/git-pull-request-template/dlflgkjacacpmhdpiggkdiaieddfmkia
Descrizione Pre-populate pull requests with a template on Github and Bitbucket.
Dimensione del File 64.11 KB
Conteggio Installazioni 403
Versione Corrente 0.5.0
Ultimo Aggiornamento 2022-07-14
Data di Pubblicazione 2019-02-24
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Tyler Crammond
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/tcrammond/chrome-pullrequest-templates
URL della Pagina di Aiuto https://github.com/tcrammond/chrome-pullrequest-templates/issues
Lingue Supportate 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"
    ]
}