Jira Enricher

This extension fixes some of the flaws of Jira's kanban boards and service desk queues!

Jira Enricher란 무엇입니까?

Jira Enricher은(는) SMExDigital에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension fixes some of the flaws of Jira's kanban boards and service desk queues!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Jira Enricher 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension fixes some of the flaws of Jira's Service desk and kanban boards by showing more detail on mouseover for flags, sub-tasks, and changing the whole card colour (not just the bar down the side!), and grouping service desk queues.

More to come, please leave a comment :)                    

확장 프로그램 기본 정보

이름 Jira Enricher Jira Enricher
ID jlihclacpdikdmpcajoippnebilifkfm
공식 URL https://chromewebstore.google.com/detail/jira-enricher/jlihclacpdikdmpcajoippnebilifkfm
설명 This extension fixes some of the flaws of Jira's kanban boards and service desk queues!
파일 크기 69.05 KB
설치 횟수 52
현재 버전 1.0.11
최근 업데이트 2020-04-02
출시 날짜 2020-04-02
개발자 SMExDigital
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.smexdigital.com
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jira Enricher",
    "version": "1.0.11",
    "author": "Mike Burns",
    "homepage_url": "http:\/\/www.smexdigital.com",
    "default_locale": "en_GB",
    "description": "This extension fixes some of the flaws of Jira's kanban boards and service desk queues!",
    "minimum_chrome_version": "78.0.3904.108",
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "*:\/\/*.atlassian.net\/*"
            ],
            "css": [
                "style\/extension.css"
            ],
            "js": [
                "options\/defaultOptions.js",
                "scripts\/utils.js",
                "scripts\/content\/enrichIssue.js",
                "scripts\/content\/enrichServiceDesk.js",
                "scripts\/content\/enrichContextMenu.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "page_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "64": "images\/icon64.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Enriches the Jira Software and Jira Service Desk with a more useful user experience."
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "options\/defaultOptions.js",
            "scripts\/background\/onRefreshPage.js",
            "scripts\/background\/onShowIcon.js",
            "scripts\/background\/onContextMenus.js",
            "scripts\/background\/onExpandedQueues.js"
        ],
        "persistent": false
    }
}