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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Сonverts Jira issue title to branch name and puts it on the clipboard"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में JiGit - Jira issue title to branch name एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
}