Agfa JIRA
Adds custom actions to JIRA issue pages
什么是Agfa JIRA?
Agfa JIRA是由blair.conrad开发的Chrome扩展程序,该扩展的主要功能是“Adds custom actions to JIRA issue pages”。
扩展截图
下载Agfa JIRA扩展crx文件
下载Agfa JIRA扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Agfa JIRA |
ID | hmamnklhelndfigmpglijjgifibaoijf |
官方URL | https://chromewebstore.google.com/detail/agfa-jira/hmamnklhelndfigmpglijjgifibaoijf |
简介 | Adds custom actions to JIRA issue pages |
文件大小 | 21.26 KB |
安装次数 | 56 |
当前版本 | 0.9.0 |
更新时间 | 2021-07-22 |
上架时间 | 2018-07-23 |
评分 | 5.00/5 共1次评分 |
开发者 | blair.conrad |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } |