Azure DevOps branch naming

Automated branch naming for Azure DevOps

Azure DevOps branch naming क्या है?

Azure DevOps branch naming SPIRIT/21 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automated branch naming for Azure DevOps"।

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

screenshot

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

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

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

                        Azure DevOps has no solution to auto fill branch names, when creating a branch from a ticket. This extension lets you configure a set of rules, which autofills the branch name with the given information.                    

एक्सटेंशन की मूल जानकारी

नाम Azure DevOps branch naming Azure DevOps branch naming
ID iambfodipfkcldfnmhggigonebckknli
आधिकारिक URL https://chromewebstore.google.com/detail/azure-devops-branch-namin/iambfodipfkcldfnmhggigonebckknli
विवरण Automated branch naming for Azure DevOps
फ़ाइल का आकार 13.93 KB
स्थापना संख्या 87
वर्तमान संस्करण 1.2.3
अंतिम अपडेट 2019-08-20
प्रकाशन तिथि 2019-08-20
डेवलपर SPIRIT/21
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Azure DevOps branch naming",
    "version": "1.2.3",
    "description": "Automated branch naming for Azure DevOps",
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Branch Naming",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.visualstudio.com\/*"
            ],
            "js": [
                "window.js"
            ]
        }
    ]
}