JIRA Issue Branch Name Generator

Generates a branch name based on the current JIRA issue view.

JIRA Issue Branch Name Generator là gì?

JIRA Issue Branch Name Generator là một tiện ích mở rộng Chrome được phát triển bởi https://thinkotsan.com, và tính năng chính của nó là "Generates a branch name based on the current JIRA issue view.".

Ả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 JIRA Issue Branch Name Generator

Tải xuống các tệp mở rộng JIRA Issue Branch Name Generator 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

                        This chrome extension generates a branch name from a JIRA issue view and copies it to clipboard to be used as a name for your version control branches.                    

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

Tên JIRA Issue Branch Name Generator JIRA Issue Branch Name Generator
ID apgennglojmcjggiideonbmhnadicglo
URL Chính Thức https://chromewebstore.google.com/detail/jira-issue-branch-name-ge/apgennglojmcjggiideonbmhnadicglo
Mô tả Generates a branch name based on the current JIRA issue view.
Kích Thước Tệp 13.45 KB
Số Lần Cài Đặt 16
Phiên Bản Hiện Tại 3
Cập Nhật Lần Cuối 2021-04-26
Ngày Phát Hành 2019-04-30
Nhà Phát Triển https://thinkotsan.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JIRA Issue Branch Name Generator",
    "version": "3",
    "description": "Generates a branch name based on the current JIRA issue view.",
    "icons": {
        "128": "128.png",
        "64": "64.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*\/projects\/*\/issues\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "declarativeContent"
    ]
}