Cards & Colors

Extension enhances visibility to issues and cards on Jira Agile boards based on colored edges and statuses

什麼是Cards & Colors?

Cards & Colors是由3rdUnknown開發的Chrome擴展程式,該擴展的主要功能是“Extension enhances visibility to issues and cards on Jira Agile boards based on colored edges and statuses”。

擴展截圖

screenshot

下載Cards & Colors擴展crx文件

下載Cards & Colors擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Boost the visibility of issues on your cloud Jira agile boards by adding colors based on:
- colored edges for cards ("Board settings - Card colors" settings that added colored edges for cards based on selected method (JQL queries, etc)
- issue status (for example "Ready For QA", "Fixes Needed", "Blocked in QA")
- issue type (for example Bug-sub-task)

Also, the extension adds a button "Statistics" in the top menu, which displays the number of issues on board summarized by issue type.

Requires a Jira Software Cloud.                    

擴展基本資訊

名稱 Cards & Colors Cards & Colors
ID gaifepagmjpnjklffdfcpmcojjliacge
官方網址 https://chromewebstore.google.com/detail/cards-colors/gaifepagmjpnjklffdfcpmcojjliacge
簡介 Extension enhances visibility to issues and cards on Jira Agile boards based on colored edges and statuses
檔案大小 524 KB
安裝次數 90
目前版本 1.0.25
更新時間 2024-02-27
上架時間 2022-05-30
評分 5.00/5 共 3 次評分
開發者 3rdUnknown
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cards & Colors",
    "version": "1.0.25",
    "manifest_version": 3,
    "description": "Extension enhances visibility to issues and cards on Jira Agile boards based on colored edges and statuses",
    "author": "3rdUnknown",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_title": "Cards & Colors",
        "default_popup": "src\/options_custom\/index.html"
    },
    "background": {
        "service_worker": "src\/bg\/background.js"
    },
    "options_page": "src\/options_custom\/index.html",
    "permissions": [
        "storage",
        "notifications"
    ],
    "host_permissions": [
        "https:\/\/*.atlassian.net\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}