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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "By utilizing a standard Pull Request (PR) Template developers can have a checklist for their coding standards."।

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

screenshot

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

crx प्रारूप में Pull Request Template Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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*"
            ]
        }
    ]
}