Agfa JIRA

Adds custom actions to JIRA issue pages

Agfa JIRAคืออะไร?

Agfa JIRA เป็นส่วนขยายของ Chrome ที่พัฒนาโดย blair.conrad และคุณลักษณะหลักของมันคือ "Adds custom actions to JIRA issue pages"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Agfa JIRA

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    ]
}