Agfa JIRA

Adds custom actions to JIRA issue pages

Agfa JIRA란 무엇입니까?

Agfa JIRA은(는) blair.conrad에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds custom actions to JIRA issue pages"입니다.

확장 프로그램 스크린샷

screenshot

Agfa JIRA 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    ]
}