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文件
下載JiGit - Jira issue title to branch name擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } |