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 là gì?

Convert JIRA issue to feature name là một tiện ích mở rộng Chrome được phát triển bởi Andriy Okhrimenko, và tính năng chính của nó là "Fully customisable extension for easy create-and-copy git feature name from Jira issue name Usage Open any JIRA issue page, click…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Convert JIRA issue to feature name

Tải xuống các tệp mở rộng Convert JIRA issue to feature name dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Convert JIRA issue to feature name Convert JIRA issue to feature name
ID boaoeacdjbpjkgcigogfjcbplmgjadnl
URL Chính Thức https://chromewebstore.google.com/detail/convert-jira-issue-to-fea/boaoeacdjbpjkgcigogfjcbplmgjadnl
Mô tả Fully customisable extension for easy create-and-copy git feature name from Jira issue name Usage Open any JIRA issue page, click…
Kích Thước Tệp 15.53 KB
Số Lần Cài Đặt 36
Phiên Bản Hiện Tại 0.5.3
Cập Nhật Lần Cuối 2018-04-13
Ngày Phát Hành 2018-04-13
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Andriy Okhrimenko
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/aokhrimenko/chrome-ext-jira-feature-name
Ngôn Ngữ Được Hỗ Trợ 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
    }
}