JIRA ShortCut - BKTB

Copy to clip board Jira issue task-sub task title and Confluence issue title

JIRA ShortCut - BKTB란 무엇입니까?

JIRA ShortCut - BKTB은(는) vinanti.thakur에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy to clip board Jira issue task-sub task title and Confluence issue title"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

JIRA ShortCut - BKTB 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension includes additional features to Jira Shortcut originally by mshytikov.


Additional features are as follows:
1.	Able to copy Confluence page title.

2.	Able to copy parent task info (if exists) in Jira ticket.

3.	When pasted, the information would be hyperlink enabled text (if text editor supports hyperlink)


*** Setup ***
1. Right click extension icon -> options

2. Click 'Add rule' -> Click ‘Jira Default’ for Jira -> ‘Save’

3. Click ‘Add rule’ -> Click ‘Confluence Default’ for Confluence -> ‘Save’

4. (Optional) Click 'Add rule' -> Custom Rules (If user wants to customize the rules) -> ‘Save’ 

5. Open Jira/Confluence page, user should see the icon enabled in the address bar!


Enjoy!!                    

확장 프로그램 기본 정보

이름 JIRA ShortCut - BKTB JIRA ShortCut - BKTB
ID ajagbdcjimfigmdpbbbpnlkpamhnhpee
공식 URL https://chrome.google.com/webstore/detail/ajagbdcjimfigmdpbbbpnlkpamhnhpee
설명 Copy to clip board Jira issue task-sub task title and Confluence issue title
파일 크기 9.88 KB
설치 횟수 87
현재 버전 5.0.3
최근 업데이트 2016-11-15
출시 날짜 2016-11-15
평점 4.73/5 총 11 개의 평점
개발자 vinanti.thakur
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JIRA ShortCut - BKTB",
    "version": "5.0.3",
    "manifest_version": 2,
    "description": "Copy to clip board Jira issue task-sub task title and Confluence issue title",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/config.js",
            "js\/bg.js"
        ]
    },
    "permissions": [
        "tabs",
        "webNavigation",
        "background",
        "clipboardWrite"
    ],
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Copy",
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+J"
            }
        }
    },
    "options_page": "options.html"
}