Cards & Colors
Extension enhances visibility to issues and cards on Jira Agile boards based on colored edges and statuses
Was ist Cards & Colors?
Cards & Colors ist eine Chrome-Erweiterung, die von 3rdUnknown entwickelt wurde, und ihr Hauptmerkmal ist "Extension enhances visibility to issues and cards on Jira Agile boards based on colored edges and statuses".
Erweiterungsscreenshots
Cards & Colors-Erweiterungs-CRX-Datei herunterladen
Laden Sie Cards & Colors-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Cards & Colors |
ID | gaifepagmjpnjklffdfcpmcojjliacge |
Offizielle URL | https://chromewebstore.google.com/detail/cards-colors/gaifepagmjpnjklffdfcpmcojjliacge |
Beschreibung | Extension enhances visibility to issues and cards on Jira Agile boards based on colored edges and statuses |
Dateigröße | 524 KB |
Installationsanzahl | 90 |
Aktuelle Version | 1.0.25 |
Letztes Update | 2024-02-27 |
Veröffentlichungsdatum | 2022-05-30 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | 3rdUnknown |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |