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
官方網址 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
    }
}