Jira Board Backlog Status Enhancer

Adds color-coded status labels to issues on the Jira Board backlog page, improving workflow visualization for users.

Jira Board Backlog Status Enhancer là gì?

Jira Board Backlog Status Enhancer là một tiện ích mở rộng Chrome được phát triển bởi Douglas Medeiros, và tính năng chính của nó là "Adds color-coded status labels to issues on the Jira Board backlog page, improving workflow visualization for users.".

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

screenshot

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

Tải xuống các tệp mở rộng Jira Board Backlog Status Enhancer 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

                        This is a browser extension that adds missing issue status information to the backlog page of Jira. It is available for download on the Chrome Store.

The extension was motivated by the issue of missing issue status information on the backlog page of Jira projects managed by companies. This made it difficult to view the status of each issue on the task board, resulting in an unorganized display of information. With this extension, the status of each issue is now displayed on the task board, resulting in a more organized and easily readable display of information.

PRIVACY
No tracking, no advertising, and nothing else nefarious.

SOURCE CODE
github.com/medeirosinacio/jira-backlog-issue-status-extension

ISSUES
github.com/medeirosinacio/jira-backlog-issue-status-extension/issues                    

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

Tên Jira Board Backlog Status Enhancer Jira Board Backlog Status Enhancer
ID hmhebmpaadglhidmcjlnanfkeklombkk
URL Chính Thức https://chromewebstore.google.com/detail/jira-board-backlog-status/hmhebmpaadglhidmcjlnanfkeklombkk
Mô tả Adds color-coded status labels to issues on the Jira Board backlog page, improving workflow visualization for users.
Kích Thước Tệp 461 KB
Số Lần Cài Đặt 86
Phiên Bản Hiện Tại 0.3.2
Cập Nhật Lần Cuối 2023-05-10
Ngày Phát Hành 2023-03-29
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Douglas Medeiros
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/medeirosinacio/jira-backlog-issue-status-extension
URL Trang Trợ Giúp https://github.com/medeirosinacio/jira-backlog-issue-status-extension/issues
URL Trang Chính Sách Bảo Mật https://github.com/medeirosinacio/extension-privacy-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Jira Board Backlog Status Enhancer",
    "author": "Douglas Medeiros ",
    "description": "Adds color-coded status labels to issues on the Jira Board backlog page, improving workflow visualization for users.",
    "version": "0.3.2",
    "icons": {
        "16": "logo\/logo-16.png",
        "48": "logo\/logo-48.png",
        "128": "logo\/logo-128.png"
    },
    "permissions": [],
    "host_permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "run_at": "document_start",
            "js": [
                "resources\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "resources\/script.js",
                "resources\/style.css"
            ],
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "use_dynamic_url": true
        }
    ]
}