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'est-ce que Gerrit JIRA Link ?
Gerrit JIRA Link est une extension Chrome développée par Joe Pikowski, et sa fonction principale est "View your Gerrit changes directly in the Atlassian JIRA Cloud platform. When viewing an Issue in JIRA Cloud, this extension will…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Gerrit JIRA Link
Téléchargez les fichiers d'extension Gerrit JIRA Link au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Gerrit JIRA Link |
ID | nhndnagpmlfjpkopfkphjlmmmenkload |
URL Officiel | https://chromewebstore.google.com/detail/gerrit-jira-link/nhndnagpmlfjpkopfkphjlmmmenkload |
Description | View your Gerrit changes directly in the Atlassian JIRA Cloud platform. When viewing an Issue in JIRA Cloud, this extension will… |
Taille du Fichier | 320 KB |
Nombre d'Installations | 117 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2022-07-03 |
Date de Publication | 2022-02-28 |
Évaluation | 4.50/5 Total 4 Évaluations |
Développeur | Joe Pikowski |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/joepikowski/gerrit-jira-link |
Langues Prises en Charge | 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" } } |