Jira Enricher

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

Jira Enricher क्या है?

Jira Enricher SMExDigital द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension fixes some of the flaws of Jira's kanban boards and service desk queues!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Jira Enricher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
    }
}