Azure DevOps branch naming

Automated branch naming for Azure DevOps

Cos'è Azure DevOps branch naming?

Azure DevOps branch naming è un'estensione di Chrome sviluppata da SPIRIT/21, e la sua funzione principale è "Automated branch naming for Azure DevOps".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Azure DevOps branch naming

Scarica i file di estensione Azure DevOps branch naming 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Azure DevOps branch naming Azure DevOps branch naming
ID iambfodipfkcldfnmhggigonebckknli
URL Ufficiale https://chromewebstore.google.com/detail/azure-devops-branch-namin/iambfodipfkcldfnmhggigonebckknli
Descrizione Automated branch naming for Azure DevOps
Dimensione del File 13.93 KB
Conteggio Installazioni 87
Versione Corrente 1.2.3
Ultimo Aggiornamento 2019-08-20
Data di Pubblicazione 2019-08-20
Sviluppatore SPIRIT/21
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}