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 |
Eメール | [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" ] } |