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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
            ]
        }
    ]
}