Trello card to git branch name
Creates git branch name from trello card url: '8-fix-styles' will copy to clipboard you branch name 'card_8_fix_styles'
什么是Trello card to git branch name?
Trello card to git branch name是由ba3ejiuh4er开发的Chrome扩展程序,该扩展的主要功能是“Creates git branch name from trello card url: '8-fix-styles' will copy to clipboard you branch name 'card_8_fix_styles'”。
扩展截图
下载Trello card to git branch name扩展crx文件
下载Trello card to git branch name扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Bored always rewriting trello card URL to git branch name? This extension will help you generatee and copy to clipboard your new branch name in one click! 扩展基本信息
| 名称 | |
| ID | himhfcpokbaiahhmhcibghlakmpeckdg |
| 官方URL | https://chromewebstore.google.com/detail/trello-card-to-git-branch/himhfcpokbaiahhmhcibghlakmpeckdg |
| 简介 | Creates git branch name from trello card url: '8-fix-styles' will copy to clipboard you branch name 'card_8_fix_styles' |
| 文件大小 | 23.58 KB |
| 安装次数 | 76 |
| 当前版本 | 1.0 |
| 更新时间 | 2018-10-31 |
| 上架时间 | 2018-10-31 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | ba3ejiuh4er |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Trello card to git branch name",
"short_name": "TCTGBN",
"version": "1.0",
"author": "Landush D.",
"description": "Creates git branch name from trello card url: '8-fix-styles' will copy to clipboard you branch name 'card_8_fix_styles'",
"icons": {
"16": "icons\/16x16.png",
"32": "icons\/32x32.png",
"48": "icons\/48x48.png",
"64": "icons\/64x64.png",
"128": "icons\/128x128.png"
},
"permissions": [
"activeTab"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_title": "Copy branch name",
"default_icon": "icons\/48x48.png"
}
} | |