Azure DevOps branch naming
Automated branch naming for Azure DevOps
什么是Azure DevOps branch naming?
Azure DevOps branch naming是由SPIRIT/21开发的Chrome扩展程序,该扩展的主要功能是“Automated branch naming for Azure DevOps”。
扩展截图
下载Azure DevOps branch naming扩展crx文件
下载Azure DevOps branch naming扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" ] } ] } |