Inspect and view changes in JIRA++ 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
{
"manifest_version": 2,
"name": "JIRA++",
"short_name": "JIRA++",
"version": "2022.9.11",
"description": "Quality of life improvements for JIRA!",
"icons": {
"16": "images/jirapp_16.png",
"32": "images/jirapp_32.png",
"48": "images/jirapp_48.png",
"128": "images/jirapp_128.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"run_at": "document_idle",
"matches": [
"https://*.atlassian.net/*"
],
"js": [
"content/PatienceDiff.js",
"content/ToggleButton.js",
"content/main.js"
]
}
],
"web_accessible_resources": [
"content/main.css",
"icons/read_black.svg",
"icons/edit_black.svg"
],
"browser_specific_settings": {
"gecko": {
"id": "{f74d8735-3587-4fab-870e-88c6faf2b253}"
}
}
}