JIRA Issue Branch Name Generator
Generates a branch name based on the current JIRA issue view.
什么是JIRA Issue Branch Name Generator?
JIRA Issue Branch Name Generator是由https://thinkotsan.com开发的Chrome扩展程序,该扩展的主要功能是“Generates a branch name based on the current JIRA issue view.”。
扩展截图
下载JIRA Issue Branch Name Generator扩展crx文件
下载JIRA Issue Branch Name Generator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This chrome extension generates a branch name from a JIRA issue view and copies it to clipboard to be used as a name for your version control branches.
扩展基本信息
名称 | JIRA Issue Branch Name Generator |
ID | apgennglojmcjggiideonbmhnadicglo |
官方URL | https://chromewebstore.google.com/detail/jira-issue-branch-name-ge/apgennglojmcjggiideonbmhnadicglo |
简介 | Generates a branch name based on the current JIRA issue view. |
文件大小 | 13.45 KB |
安装次数 | 16 |
当前版本 | 3 |
更新时间 | 2021-04-26 |
上架时间 | 2019-04-30 |
开发者 | https://thinkotsan.com |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "JIRA Issue Branch Name Generator", "version": "3", "description": "Generates a branch name based on the current JIRA issue view.", "icons": { "128": "128.png", "64": "64.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.atlassian.net\/*\/projects\/*\/issues\/*" ], "js": [ "content.js" ] } ], "page_action": { "default_icon": "128.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab", "clipboardWrite", "declarativeContent" ] } |