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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andriy Okhrimenko และคุณลักษณะหลักของมันคือ "Fully customisable extension for easy create-and-copy git feature name from Jira issue name Usage Open any JIRA issue page, click…"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Convert JIRA issue to feature name

ดาวน์โหลดไฟล์ส่วนขยาย 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
    }
}