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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |