Github to Jira

Go from a Github pull request to the corresponding Jira ticket in a click

Github to Jira क्या है?

Github to Jira mfalade द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Go from a Github pull request to the corresponding Jira ticket in a click"।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में Github to Jira एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Having to find the Jira ticket for a given Github pull request can be quite annoying. Especially in cases where authors don't include a link to relevant tickets in their PR description.

This extension allows you (as both an author and a reviewer) to go from a given Github pull request to the corresponding Jira ticket in a click without the stress of searching through Jira for the appropriate ticket.  

All you have to do is to include ticket ID in your branch name somehow. e.g For a sample ticket POC-42, say you have a branch named POC-42 or POC-42-proof-of-concept or proof-of-POC-42-concept (you get the gist ;)), the extension embeds a link to the Jira ticket on your Github pull request page and you can visit said ticket in a click. 

You can totally configure supported ticket prefixes as well as your Atlassian organization url.                    

एक्सटेंशन की मूल जानकारी

नाम Github to Jira Github to Jira
ID dhnagjladcclacjnccpnibdmkljidnhl
आधिकारिक URL https://chromewebstore.google.com/detail/github-to-jira/dhnagjladcclacjnccpnibdmkljidnhl
विवरण Go from a Github pull request to the corresponding Jira ticket in a click
फ़ाइल का आकार 22.84 KB
स्थापना संख्या 38
वर्तमान संस्करण 1.0
अंतिम अपडेट 2020-10-14
प्रकाशन तिथि 2020-10-13
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर mfalade
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/mfalade/github-to-jira
सहायता पृष्ठ URL https://github.com/mfalade/github-to-jira/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github to Jira",
    "version": "1.0",
    "description": "Go from a Github pull request to the corresponding Jira ticket in a click",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/contentScript\/index.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Go from a PR to JIRA in a click",
        "default_popup": "src\/browserAction\/index.html"
    },
    "background": {
        "scripts": [
            "src\/background\/index.js"
        ]
    },
    "icons": {
        "16": "images\/logo-16x16.png",
        "32": "images\/logo-32x32.png"
    },
    "permissions": [
        "webNavigation",
        "storage"
    ],
    "web_accessible_resources": [
        "config\/index.js"
    ],
    "manifest_version": 2
}