Inspect and view changes in Clean 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Clean Jira",
"version": "0.0.1",
"manifest_version": 2,
"description": "Get rid of extra columns in Jira sprint board for a better user experience.",
"icons": {
"48": "icon48.png"
},
"content_scripts": [
{
"run_at": "document_end",
"css": [
"styles.css"
],
"js": [
"content.js"
],
"matches": [
"https://*.atlassian.net/*"
]
}
]
}