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 là gì?

Gerrit JIRA Link là một tiện ích mở rộng Chrome được phát triển bởi Joe Pikowski, và tính năng chính của nó là "View your Gerrit changes directly in the Atlassian JIRA Cloud platform. When viewing an Issue in JIRA Cloud, this extension will…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gerrit JIRA Link

Tải xuống các tệp mở rộng Gerrit JIRA Link dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gerrit JIRA Link Gerrit JIRA Link
ID nhndnagpmlfjpkopfkphjlmmmenkload
URL Chính Thức https://chromewebstore.google.com/detail/gerrit-jira-link/nhndnagpmlfjpkopfkphjlmmmenkload
Mô tả View your Gerrit changes directly in the Atlassian JIRA Cloud platform. When viewing an Issue in JIRA Cloud, this extension will…
Kích Thước Tệp 320 KB
Số Lần Cài Đặt 117
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2022-07-03
Ngày Phát Hành 2022-02-28
Đánh Giá 4.50/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Joe Pikowski
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/joepikowski/gerrit-jira-link
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}