Gerrit JIRA Link
View your Gerrit changes directly in the Atlassian JIRA Cloud platform. When viewing an Issue in JIRA Cloud, this extension will…
¿Qué es Gerrit JIRA Link?
Gerrit JIRA Link es una extensión de Chrome desarrollada por Joe Pikowski, y su función principal es "View your Gerrit changes directly in the Atlassian JIRA Cloud platform. When viewing an Issue in JIRA Cloud, this extension will…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Gerrit JIRA Link
Descarga archivos de extensión Gerrit JIRA Link en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Gerrit JIRA Link |
ID | nhndnagpmlfjpkopfkphjlmmmenkload |
URL Oficial | https://chromewebstore.google.com/detail/gerrit-jira-link/nhndnagpmlfjpkopfkphjlmmmenkload |
Descripción | View your Gerrit changes directly in the Atlassian JIRA Cloud platform. When viewing an Issue in JIRA Cloud, this extension will… |
Tamaño del Archivo | 320 KB |
Cantidad de Instalaciones | 117 |
Versión Actual | 1.2 |
Última Actualización | 2022-07-03 |
Fecha de Publicación | 2022-02-28 |
Calificación | 4.50/5 Total de 4 Calificaciones |
Desarrollador | Joe Pikowski |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/joepikowski/gerrit-jira-link |
Idiomas Soportados | 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" } } |