Branch Name Generator

Branch Name Generator

什麼是Branch Name Generator?

Branch Name Generator是由klajdipaja開發的Chrome擴展程式,該擴展的主要功能是“Branch Name Generator”。

擴展截圖

screenshot

下載Branch Name Generator擴展crx文件

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

擴展使用說明

                        A helper to that generates branche name for Atlassian or Azure DevOps ticket.
As a developer using the git-flow proccess you often need to create branches that have names deriving from the project code, ticket number and title. 
That is what this extension does, you can fill the form with that data or load all the data from the open Jira/Azure Devops ticket tab using web scrapping, and when you click Generate Branch Name a branch name will be generated that you can copy and use it for your git-flow proccess.
Example:
Project Code: OGM
Ticket number: 1581
Title: Hibernate-OGM Neo4j uses an outdated Bolt driver for remote connections.
Generated Branch Name: feature/OGM-1581_HibernateOGM_Neo4j_uses_an_outdated_Bolt_driver_for_remote_connections                    

擴展基本資訊

名稱 Branch Name Generator Branch Name Generator
ID ponaigcolfgmjneppjpenfobcnkecmao
官方網址 https://chromewebstore.google.com/detail/branch-name-generator/ponaigcolfgmjneppjpenfobcnkecmao
簡介 Branch Name Generator
檔案大小 925 KB
安裝次數 24
目前版本 1.0
更新時間 2021-10-12
上架時間 2021-10-12
開發者 klajdipaja
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Branch Name Generator",
    "description": "Branch Name Generator",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "Open"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/static\/js\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png",
        "512": "logo512.png"
    }
}