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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Pre-populate pull requests with a template on Github and Bitbucket."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Git Pull Request Templates एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 Git Pull Request Templates
ID dlflgkjacacpmhdpiggkdiaieddfmkia
आधिकारिक URL 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"
    ]
}