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開發的Chrome擴展程式,該擴展的主要功能是“View your Gerrit changes directly in the Atlassian JIRA Cloud platform. When viewing an Issue in JIRA Cloud, this extension will…”。
擴展截圖
下載Gerrit JIRA Link擴展crx文件
下載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 |
ID | nhndnagpmlfjpkopfkphjlmmmenkload |
官方網址 | 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" } } |