Jira Task To Branch Name
Transform jira id + title to git branch name
Jira Task To Branch Nameとは何ですか?
Jira Task To Branch Nameはunduineによって開発されたChromeの拡張機能で、その主な機能は「Transform jira id + title to git branch name」です。
拡張機能のスクリーンショット
Jira Task To Branch Name拡張機能のCRXファイルをダウンロード
Jira Task To Branch Name拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
If you faced with problem on your work with integration Jira to git - welcome! This extension will help you with it, you can copy your jira task name to git branch.
For example - Task with Id - "TASK-11" and name "remove-button-from-home-page" will transform to string "TASK-11-remove-button-from-home-page"
Hope it will help someone :) 拡張機能の基本情報
| 名前 | |
| ID | bjblobcihloahnigngcmplnjjkmjlgkf |
| 公式URL | https://chromewebstore.google.com/detail/jira-task-to-branch-name/bjblobcihloahnigngcmplnjjkmjlgkf |
| 説明 | Transform jira id + title to git branch name |
| ファイルサイズ | 41.56 KB |
| インストール数 | 33 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2021-08-31 |
| 公開日 | 2021-08-30 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | unduine |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Jira Task To Branch Name",
"version": "1.0",
"author": "Maxim Topalov",
"description": "Transform jira id + title to git branch name",
"manifest_version": 2,
"browser_action": {
"default_icon": "icon.png",
"default_popup": "index.html",
"default_title": "Jira Task To Branch Name"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": [
"clipboardWrite",
"https:\/\/*.atlassian.net\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.atlassian.net\/*"
],
"js": [
"lodash.min.js",
"index.js"
]
}
]
} | |