Branch Name Generator
Branch Name Generator
Branch Name Generator란 무엇입니까?
Branch Name Generator은(는) klajdipaja에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Branch Name Generator"입니다.
확장 프로그램 스크린샷
Branch Name Generator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" } } |