Branch Name Generator
Branch Name Generator
Branch Name Generatorとは何ですか?
Branch Name Generatorはklajdipajaによって開発されたChromeの拡張機能で、その主な機能は「Branch Name Generator」です。
拡張機能のスクリーンショット
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 |
ID | ponaigcolfgmjneppjpenfobcnkecmao |
公式URL | https://chromewebstore.google.com/detail/branch-name-generator/ponaigcolfgmjneppjpenfobcnkecmao |
説明 | Branch Name Generator |
ファイルサイズ | 925 KB |
インストール数 | 24 |
現在のバージョン | 1.0 |
最終更新日 | 2021-10-12 |
公開日 | 2021-10-12 |
開発者 | klajdipaja |
Eメール | [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" } } |