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은(는) bansalakhil에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open issue in JIRA by keyboard shortcut or by highlight and right click context menu. Omnibox. Recently visited issues."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

JIRA Issue Quick Open 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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