Cards & Colors

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

Apa itu Cards & Colors?

Cards & Colors adalah ekstensi Chrome yang dikembangkan oleh 3rdUnknown, dan fitur utamanya adalah "Extension enhances visibility to issues and cards on Jira Agile boards based on colored edges and statuses".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Cards & Colors

Unduh file ekstensi Cards & Colors dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Cards & Colors Cards & Colors
ID gaifepagmjpnjklffdfcpmcojjliacge
URL Resmi https://chromewebstore.google.com/detail/cards-colors/gaifepagmjpnjklffdfcpmcojjliacge
Deskripsi Extension enhances visibility to issues and cards on Jira Agile boards based on colored edges and statuses
Ukuran File 524 KB
Jumlah Instalasi 90
Versi Saat Ini 1.0.25
Terakhir Diperbarui 2024-02-27
Tanggal Publikasi 2022-05-30
Penilaian 5.00/5 Total 3 Penilaian
Pengembang 3rdUnknown
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}