Inspect and view changes in Cards & Colors source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Cards & Colors",
"version": "1.0.28",
"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"
]
}
]
}