JIRA Issue Quick Open

Open issue in JIRA by keyboard shortcut or by highlight and right click context menu. Omnibox. Recently visited issues.

JIRA Issue Quick Openคืออะไร?

JIRA Issue Quick Open เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bansalakhil และคุณลักษณะหลักของมันคือ "Open issue in JIRA by keyboard shortcut or by highlight and right click context menu. Omnibox. Recently visited issues."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย JIRA Issue Quick Open ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension allow users to open issues in Jira by:

1. Clicking on the extension icon and providing issue id like 56 or SOC-56
2. Choosing option from the context menu by right click after selecting the issue id. This is helpful when the story/issue id is mentioned in email or pull requests etc.. User can just select the issue id and right click to open issue in jira.
3. Supports keyboard shortcuts. (A) Alt+J to open issue opener popup (B) Alt+Shift+J to open the selected/highlighted issue id in jira directly
4. Supports Omnibox. In the address bar type J + TAB then issue id to open issue in current tab. This also suggests matching issues.
5. See recently visited issues. 


* This extension does not make any api calls to JIRA
** This extension does not share any data with the extension developer                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ JIRA Issue Quick Open JIRA Issue Quick Open
ID idepbkiclomjlbfokmfcjikoipjpdddg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/jira-issue-quick-open/idepbkiclomjlbfokmfcjikoipjpdddg
คำอธิบาย Open issue in JIRA by keyboard shortcut or by highlight and right click context menu. Omnibox. Recently visited issues.
ขนาดไฟล์ 14.71 KB
จำนวนการติดตั้ง 157
เวอร์ชันปัจจุบัน 11.2
อัปเดตครั้งล่าสุด 2018-08-03
วันที่เผยแพร่ 2018-08-03
คะแนน 5.00/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา bansalakhil
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JIRA Issue Quick Open",
    "description": "Open issue in JIRA by keyboard shortcut or by highlight and right click context menu. Omnibox. Recently visited issues.",
    "version": "11.2",
    "author": "Akhil Bansal",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "options.js",
            "commands.js",
            "common.js",
            "context.js",
            "popup.js"
        ],
        "persistant": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "js": [
                "jira.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "activeTab",
        "tabs",
        "storage",
        "history"
    ],
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "omnibox": {
        "keyword": "j"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+J",
                "mac": "Alt+J"
            }
        },
        "open-in-jira": {
            "suggested_key": {
                "default": "Alt+Shift+J",
                "mac": "Alt+Shift+J"
            },
            "description": "Open selected story\/issue  in Jira"
        }
    }
}