Agfa JIRA
Adds custom actions to JIRA issue pages
Wat is Agfa JIRA?
Agfa JIRA is een Chrome-extensie ontwikkeld door blair.conrad, en de belangrijkste functie is "Adds custom actions to JIRA issue pages".
Extensie Screenshots
Download het CRX-bestand van de extensie Agfa JIRA
Download Agfa JIRA-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Agfa Jira is a Google Chrome extension that adds handy actions to a Jira issue page, currently: * Email issue * Copy Link as Markdown * Copy Title It's tied to the Jira server at Agfa Healthcare.
Basisinformatie over de Extensie
Naam | Agfa JIRA |
ID | hmamnklhelndfigmpglijjgifibaoijf |
Officiële URL | https://chromewebstore.google.com/detail/agfa-jira/hmamnklhelndfigmpglijjgifibaoijf |
Beschrijving | Adds custom actions to JIRA issue pages |
Bestandsgrootte | 21.26 KB |
Aantal Installaties | 56 |
Huidige Versie | 0.9.0 |
Laatst Bijgewerkt | 2021-07-22 |
Publicatiedatum | 2018-07-23 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | blair.conrad |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Agfa JIRA", "version": "0.9.0", "description": "Adds custom actions to JIRA issue pages", "homepage_url": "https:\/\/github.com\/blairconrad\/AgfaJiraChromeExtension", "options_ui": { "page": "options.html", "chrome_style": true }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "page": "background.html", "persistent": false }, "page_action": { "default_icon": { "16": "icon16.png" }, "default_title": "AGFA JIRA", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/jiraprod.agfahealthcare.com\/*" ], "js": [ "content_script.js" ] } ], "commands": { "copy-title": { "suggested_key": { "default": "Alt+T" }, "description": "Copy title" }, "copy-link": { "suggested_key": { "default": "Alt+L" }, "description": "Copy link as markdown" }, "copy-html-link": { "suggested_key": { "default": "Alt+H" }, "description": "Copy link as HTML" }, "send-email": { "suggested_key": { "default": "Alt+S" }, "description": "Email issue" } }, "permissions": [ "activeTab", "clipboardWrite", "declarativeContent", "storage" ] } |