Inspect and view changes in Jira On Fire by Kolossi 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",
"manifest_version": 2,
"name": "Jira On Fire by Kolossi",
"short_name": "Jira On Fire",
"description": "For cloud-hosted jira (https://*.atlassian.net) this will do some enhancements to the jira display. See options.",
"version": "0.7.9",
"icons": {
"16": "jira16.png",
"32": "jira32.png",
"48": "jira48.png",
"64": "jira64.png",
"96": "jira96.png",
"128": "jira128.png"
},
"web_accessible_resources": [
"jira16.png",
"jira32.png"
],
"content_scripts": [
{
"matches": [
"https://*.atlassian.net/*"
],
"js": [
"jquery-3.1.0.min.js",
"fireit.min.js",
"jiradata.min.js"
],
"css": [
"styles.min.css"
]
}
],
"permissions": [
"storage"
],
"options_ui": {
"page": "options.min.html",
"open_in_tab": false
}
}