Jira On Fire by Kolossi

For cloud-hosted jira (https://*.atlassian.net) this will do some enhancements to the jira display. See options.

Was ist Jira On Fire by Kolossi?

Jira On Fire by Kolossi ist eine Chrome-Erweiterung, die von Kolossi entwickelt wurde, und ihr Hauptmerkmal ist "For cloud-hosted jira (https://*.atlassian.net) this will do some enhancements to the jira display. See options.".

Erweiterungsscreenshots

screenshot

Jira On Fire by Kolossi-Erweiterungs-CRX-Datei herunterladen

Laden Sie Jira On Fire by Kolossi-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Jira doesn't always help give a quick overview when viewing search results or boards.   Jira plugins can help but be expensive or even impossible on cloud-hosted Jira.  This gets around both of these problems by using a (FREE!) Chrome extension to modify the page html after display to optional provide these changes:

 - Efficient issue retrieval from jira to prevent dupicate requests - cahcing & queueing
 - Widens the comment display area when viewing a Jira ticket or editing a comment.
 - When viewing sub-tasks in search results, by default Jira shows just the parent Jira ticket number, with the parent description as a tooltip. This is reversed.
 - When viewing search results, retrieves the logged worklog for each Jira ticket and adds it to the results display. Shows first 3 initially, click to show the rest.  This functionality is off by default since the timesheet is now implemented in search results.
 - When viewing boards & search results, shows a "traffic light" indicating if the ticket is ready to start.  If it's a subtask, this is down to whether the previous subtask of the parent is complete, and whether the parent itself is complete. A tooltip explains why the traffic light is the colour it is.  Also looks for "blocked" labels and "Dev blocked" status of ticket or parent.
 - On boards, whilst the parent of a sub-task is shown on a surrounding card, the Jira ticket number is not clickable to open the relevant Jira ticket.  This fixes that up.
 - Timesheet.  On a search/filter results page, any worklogs for the displayed tickets are collected and presented at the bottom of the page by person and day (descending).
 - *New in v0.7.9* : Annotate the small progress graphs with the text of time estimated/recorded/remaining, instead of just being a (sometimes works!) tooltip.

Each of the modifications can be turned on or off in the Extension options.  An additional option ("show fire") highlights each change made to the page with an orange dotted underline or outline to show what it's doing.

All options other than worklog are on by default, but can be turned off in the extension options.                    

Grundlegende Informationen zur Erweiterung

Name Jira On Fire by Kolossi Jira On Fire by Kolossi
ID lfdjnnoomhdlkdobmigpmhnlhaciahfi
Offizielle URL https://chromewebstore.google.com/detail/jira-on-fire-by-kolossi/lfdjnnoomhdlkdobmigpmhnlhaciahfi
Beschreibung For cloud-hosted jira (https://*.atlassian.net) this will do some enhancements to the jira display. See options.
Dateigröße 62.35 KB
Installationsanzahl 64
Aktuelle Version 0.7.9
Letztes Update 2019-04-02
Veröffentlichungsdatum 2019-04-02
Bewertung 3.50/5 Insgesamt 2 Bewertungen
Entwickler Kolossi
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jira On Fire by Kolossi",
    "short_name": "Jira On Fire",
    "description": "For cloud-hosted jira (https:\/\/*.atlassian.net) this will do some enhancements to the jira display. See options.",
    "version": "0.7.9",
    "icons": {
        "16": "jira16.png",
        "32": "jira32.png",
        "48": "jira48.png",
        "64": "jira64.png",
        "96": "jira96.png",
        "128": "jira128.png"
    },
    "web_accessible_resources": [
        "jira16.png",
        "jira32.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "fireit.min.js",
                "jiradata.min.js"
            ],
            "css": [
                "styles.min.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.min.html",
        "open_in_tab": false
    }
}