JiGit - Jira issue title to branch name
Сonverts Jira issue title to branch name and puts it on the clipboard
JiGit - Jira issue title to branch name란 무엇입니까?
JiGit - Jira issue title to branch name은(는) andrey.zdrobilko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Сonverts Jira issue title to branch name and puts it on the clipboard"입니다.
확장 프로그램 스크린샷
JiGit - Jira issue title to branch name 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Browser extension that frees from the routine of creating a branch name when using Jira. Features * One click branch name creation when you on Jira issue page * Put branch name on the clipboard * Support Git/GitLab flow naming * Support generation name inside command: git checkout -b "brach name" * Support exclude text from issue title (regexp) * Transliterate cyrillic to latin * No analytics or user data collection * Open source project (https://github.com/VeritasV/JiGit) Motivation: remove daily routine with brach naming and save personal time. How much do you think developers working with Git and Jira spend on creating name for one branch? According to my calculations, an average of 30 seconds, which seems complete nonsense. But if you calculate creating 1-2 tasks and 2-3 bugs a day takes 150 seconds, and per year it's going to add 10 hours, 10 hours of your life per year! JiGit is designed to solve this problem, being on the issue page in Jira, with one click you get the desired branch name.
확장 프로그램 기본 정보
이름 | JiGit - Jira issue title to branch name |
ID | ncdeagabpcocllogfobfggmhgacmplie |
공식 URL | https://chromewebstore.google.com/detail/jigit-jira-issue-title-to/ncdeagabpcocllogfobfggmhgacmplie |
설명 | Сonverts Jira issue title to branch name and puts it on the clipboard |
파일 크기 | 19.97 KB |
설치 횟수 | 72 |
현재 버전 | 0.0.0.6 |
최근 업데이트 | 2020-07-21 |
출시 날짜 | 2020-06-27 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | andrey.zdrobilko |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "JiGit - Jira issue title to branch name", "description": "\u0421onverts Jira issue title to branch name and puts it on the clipboard", "version": "0.0.0.6", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "tabs", "https:\/\/*\/browse\/*", "https:\/\/*\/jira\/*\/*", "clipboardWrite", "storage" ], "browser_action": { "default_title": "Work only with jira issue pages", "default_icon": "icon32-off.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/browse\/*", "https:\/\/*\/jira\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "options_page": "options.html" } |