Convert JIRA issue to feature name

Fully customisable extension for easy create-and-copy git feature name from Jira issue name Usage Open any JIRA issue page, click…

Convert JIRA issue to feature nameとは何ですか?

Convert JIRA issue to feature nameはAndriy Okhrimenkoによって開発されたChromeの拡張機能で、その主な機能は「Fully customisable extension for easy create-and-copy git feature name from Jira issue name Usage Open any JIRA issue page, click…」です。

拡張機能のスクリーンショット

screenshot

Convert JIRA issue to feature name拡張機能のCRXファイルをダウンロード

Convert JIRA issue to feature name拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Fully customisable extension for easy create-and-copy git feature name from Jira issue name

Usage
Open any JIRA issue page, click on extension icon and click on COPY button next to desired feature name. If issue has a parent one extension will show 2 items on the popup.                    

拡張機能の基本情報

名前 Convert JIRA issue to feature name Convert JIRA issue to feature name
ID boaoeacdjbpjkgcigogfjcbplmgjadnl
公式URL https://chromewebstore.google.com/detail/convert-jira-issue-to-fea/boaoeacdjbpjkgcigogfjcbplmgjadnl
説明 Fully customisable extension for easy create-and-copy git feature name from Jira issue name Usage Open any JIRA issue page, click…
ファイルサイズ 15.53 KB
インストール数 36
現在のバージョン 0.5.3
最終更新日 2018-04-13
公開日 2018-04-13
評価 5.00/5 合計 4 レビュー
開発者 Andriy Okhrimenko
支払い方法 free
拡張機能のウェブサイト https://github.com/aokhrimenko/chrome-ext-jira-feature-name
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Convert JIRA issue to feature name",
    "short_name": "JIRA Issue to Feature",
    "version": "0.5.3",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Convert JIRA issue to feature name\n\nRight click - options\n\nReload JIRA page on first launch!",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}