Azure DevOps branch naming

Automated branch naming for Azure DevOps

What is Azure DevOps branch naming?

Azure DevOps branch naming is a Chrome extension developed by SPIRIT/21, and its main feature is "Automated branch naming for Azure DevOps".

Extension Screenshots

screenshot

Download Azure DevOps branch naming Extension CRX File

Download Azure DevOps branch naming extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Azure DevOps branch naming Azure DevOps branch naming
ID iambfodipfkcldfnmhggigonebckknli
Official URL https://chromewebstore.google.com/detail/azure-devops-branch-namin/iambfodipfkcldfnmhggigonebckknli
Description Automated branch naming for Azure DevOps
File Size 13.93 KB
Installation Count 87
Current Version 1.2.3
Last Updated 2019-08-20
Publish Date 2019-08-20
Developer SPIRIT/21
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}