JIRA Agile Instant

Useful extension to let you sort, filter, hover for info when using JIRA Agile Board. Getting the info you need at your fingertips…

ما هو JIRA Agile Instant؟

JIRA Agile Instant هو إضافة Chrome تم تطويرها بواسطة kelvin hung، والميزة الرئيسية لها هي "Useful extension to let you sort, filter, hover for info when using JIRA Agile Board. Getting the info you need at your fingertips…".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة JIRA Agile Instant

قم بتنزيل ملفات الامتداد JIRA Agile Instant بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Useful extension to let you sort, filter, hover for info when using JIRA Agile Board.

Getting the info you need at your fingertips allows you work quicker and use your time more efficiently. JIRA Instant Agile displays issue details on hover, putting labels and colors on cards for easy scanning, and allows you to sort and filter the cards.

Once you installed the chrome extension, a menu bar toggle button is added on the scrum board.  Clicking on the toggle button will bring up the menu bar.
The features of that menu bar include:
Maximize Space (allows you to remove the header of the jira work board)
1 Allows you to see only the issues you are watching (great for story huddles or important issues you care about)
2 Allows you to sort by labels (if your team uses labels on issues)
3 Allows you to sort by assignee
4 Allows you to filter by component (great for teams that organize work by components)
5 Allows you to filter users (great for team members to see what issues are assigned to them without swimlanes)
6 Allows you to filter by priority
7 Allows you to filter by fixed version
8 Allows you to filter by issue type and hide all sub-tasks
9 Allows you to see how many issues are in each status and how many story points are in each status

Note: The major plus about that side bar is it manipulates show/hide of data on the screen. You don’t see the the “circle” that jira is loading like you do when you click a quick filter (so they work without refreshing jira). This makes clicking those filter SUPER fast (and if jira is down it will still work if you are on the page already). We made sure the amount of API calls are minimal (data is cached saves them after the first call) so it isn’t a performance hit.

Extension can:
* Show a hover box when your hover on a card, with description, fix version, last comment, blocked/parent/subtask info.
* Display the “Labels” field on the card and automatically color the card.
* Display block status on the card.
* Add a link on the card to open the issue to a new tab (so it bypasses the side panel) 

You can click on the "J" button to enable/disable the plugin and go to the configuration page.

Usage
The plugin works on Work and Plan modes.  You can customize the hover and menubar on the options page.  For labeling, the plugin only displays labels started with an underscore. 

This plugin is only tested with JIRA Agile 6.3.x. and 6.4.  It may not work for newer version.  If this is the case, please leave a feedback.                    

معلومات أساسية عن التمديد

الاسم JIRA Agile Instant JIRA Agile Instant
ID igkhfelkcokndphgeoimbijbegmfpcep
عنوان URL الرسمي https://chromewebstore.google.com/detail/jira-agile-instant/igkhfelkcokndphgeoimbijbegmfpcep
الوصف Useful extension to let you sort, filter, hover for info when using JIRA Agile Board. Getting the info you need at your fingertips…
حجم الملف 204 KB
عدد التثبيتات 2,022
النسخة الحالية 2.0.2
آخر تحديث 2016-12-22
تاريخ النشر 2016-12-22
تقييم 4.50/5 مجموع تقييمات 18
المطور kelvin hung
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "",
    "icons": {
        "16": "images\/jira16.png",
        "48": "images\/jira48.png",
        "128": "images\/jira128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "name": "JIRA Agile Instant",
    "version": "2.0.2",
    "options_page": "options_public.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*\/secure\/RapidBoard.jspa*",
                "*:\/\/*\/secure\/RapidBoard.jspa*"
            ],
            "css": [
                "lc-jira-color.css"
            ],
            "js": [
                "lib\/base64.js",
                "lib\/underscore-min.js",
                "jquery.js",
                "utils.js",
                "jira_github_proxy.js",
                "others.js",
                "content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/web.png",
        "images\/web2.png",
        "images\/assignee.png",
        "images\/arrow_down.png",
        "images\/arrow_up.png",
        "images\/story_points.png",
        "images\/priority.png",
        "images\/label.png",
        "images\/ajax-loader.gif",
        "images\/github.png",
        "images\/open.png",
        "images\/max.png",
        "images\/status.png",
        "images\/priority.png",
        "images\/priority2.png",
        "images\/fixversion.png",
        "images\/notes.png",
        "images\/sort.png",
        "images\/filter.png",
        "images\/me.png",
        "images\/watching.png",
        "images\/users.png",
        "images\/component.png",
        "images\/menubar.png",
        "script.js"
    ],
    "manifest_version": 2
}