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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 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 της επέκτασης Gerrit JIRA Link

Λήψη αρχείων επέκτασης Gerrit JIRA Link σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    }
}