Azure DevOps branch naming
Automated branch naming for Azure DevOps
Vad är Azure DevOps branch naming?
Azure DevOps branch naming är en Chrome-tillägg utvecklad av SPIRIT/21, och dess huvudfunktion är "Automated branch naming for Azure DevOps".
Tilläggsskärmbilder
Ladda ner Azure DevOps branch naming-förlängningens CRX-fil
Ladda ner Azure DevOps branch naming-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | iambfodipfkcldfnmhggigonebckknli |
| Officiell webbadress | https://chromewebstore.google.com/detail/azure-devops-branch-namin/iambfodipfkcldfnmhggigonebckknli |
| Beskrivning | Automated branch naming for Azure DevOps |
| Filstorlek | 13.93 KB |
| Antal Installationer | 87 |
| Aktuell Version | 1.2.3 |
| Senast Uppdaterad | 2019-08-20 |
| Publiceringsdatum | 2019-08-20 |
| Utvecklare | SPIRIT/21 |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
]
}
]
} | |