JIRA Issue Branch Name Generator

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

什麼是JIRA Issue Branch Name Generator?

JIRA Issue Branch Name Generator是由https://thinkotsan.com開發的Chrome擴展程式,該擴展的主要功能是“Generates a branch name based on the current JIRA issue view.”。

擴展截圖

screenshot

下載JIRA Issue Branch Name Generator擴展crx文件

下載JIRA Issue Branch Name Generator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 JIRA Issue Branch Name Generator JIRA Issue Branch Name Generator
ID apgennglojmcjggiideonbmhnadicglo
官方網址 https://chromewebstore.google.com/detail/jira-issue-branch-name-ge/apgennglojmcjggiideonbmhnadicglo
簡介 Generates a branch name based on the current JIRA issue view.
檔案大小 13.45 KB
安裝次數 16
目前版本 3
更新時間 2021-04-26
上架時間 2019-04-30
開發者 https://thinkotsan.com
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    ]
}