Jira Improved

Improved Jira Agile boards!

Jira Improved là gì?

Jira Improved là một tiện ích mở rộng Chrome được phát triển bởi Dylan Greene, và tính năng chính của nó là "Improved Jira Agile boards!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Jira Improved

Tải xuống các tệp mở rộng Jira Improved dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Improves the Agile and Kanban boards! 

 - Filter the tickets! (Keyboard shortcut: F)
 - Epic name in issue cards.
 - Show each pull requests in the card.
 - Each github icon links to the pull request.
 - Closed pull requests highlight green (done). Broken urls are inverted colors.
 - Much more!! (the screenshots are out of date).

I ask for permission for "all sites" because I don't know which site you use for JIra. It only runs on pages that have the Jira Agile board view.

This plugin is open source. https://github.com/dylang/jira-improved

This is a third-party plugin. Not created or supported by Atlassian.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Jira Improved Jira Improved
ID mdfbpeoaadkecmpingophakekbicinip
URL Chính Thức https://chromewebstore.google.com/detail/jira-improved/mdfbpeoaadkecmpingophakekbicinip
Mô tả Improved Jira Agile boards!
Kích Thước Tệp 99.65 KB
Số Lần Cài Đặt 445
Phiên Bản Hiện Tại 2.0.8
Cập Nhật Lần Cuối 2016-05-03
Ngày Phát Hành 2016-05-03
Đánh Giá 3.78/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Dylan Greene
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "2.0.8",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Jira Improved",
        "default_popup": "views\/popup.html"
    },
    "options_page": "views\/options.html",
    "omnibox": {
        "keyword": "Jira Improved"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/secure\/RapidBoard.jspa*",
                "https:\/\/*\/jira\/secure\/RapidBoard.jspa*"
            ],
            "js": [
                "js\/content-script.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "css\/*.css",
        "js\/dist\/*.js"
    ]
}