Gerrit JIRA Link

View your Gerrit changes directly in the Atlassian JIRA Cloud platform. When viewing an Issue in JIRA Cloud, this extension will…

Gerrit JIRA Link क्या है?

Gerrit JIRA Link Joe Pikowski द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View your Gerrit changes directly in the Atlassian JIRA Cloud platform. When viewing an Issue in JIRA Cloud, this extension will…"।

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

screenshot
screenshot
screenshot

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

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

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

                        View your Gerrit changes directly in the Atlassian JIRA Cloud platform.

When viewing an Issue in JIRA Cloud, this extension will query the Gerrit REST API for changes that have an external tracking link to the Issue ID that you are currently viewing. ( https://gerrit-review.googlesource.com/Documentation/user-search.html#tr )

The Gerrit hostname is configurable from the settings menu of the extension.

If changes are returned from the Gerrit query, a badge will be displayed on the extension icon. Clicking the icon will add a native popup to JIRA displaying the details of your linked Gerrit changes.

This app does not track or store any personal or sensitive data.

Issues can be reported on the Github repo:
https://github.com/joepikowski/gerrit-jira-link                    

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

नाम Gerrit JIRA Link Gerrit JIRA Link
ID nhndnagpmlfjpkopfkphjlmmmenkload
आधिकारिक URL https://chromewebstore.google.com/detail/gerrit-jira-link/nhndnagpmlfjpkopfkphjlmmmenkload
विवरण View your Gerrit changes directly in the Atlassian JIRA Cloud platform. When viewing an Issue in JIRA Cloud, this extension will…
फ़ाइल का आकार 320 KB
स्थापना संख्या 117
वर्तमान संस्करण 1.2
अंतिम अपडेट 2022-07-03
प्रकाशन तिथि 2022-02-28
रेटिंग 4.50/5 कुल 4 रेटिंग्स
डेवलपर Joe Pikowski
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/joepikowski/gerrit-jira-link
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gerrit JIRA Link",
    "version": "1.2",
    "author": "Joe Pikowski",
    "manifest_version": 3,
    "short_name": "Gerrit JIRA Link",
    "description": "",
    "icons": {
        "16": "media\/icon16.png",
        "48": "media\/icon48.png",
        "128": "media\/icon128.png"
    },
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.atlassian.net\/*"
            ],
            "css": [
                "css\/gerrit-jira-link.css"
            ],
            "js": [
                "lib\/gerrit-jira-link.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "css\/*",
                "lib\/*",
                "media\/*"
            ],
            "matches": [
                "*:\/\/*.atlassian.net\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "lib\/background.js"
    }
}