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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
    }
}