Inspect and view changes in Jira in Chrome 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": "Jira in Chrome",
"short_name": "E2T",
"description": "Jira & Chrome Extension: Manage Issues Effortlessly Without Switching to Jira.",
"version": "2.9.8",
"manifest_version": 3,
"action": {
"default_title": "Jira in Chrome",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.bundle.js"
},
"permissions": [
"storage",
"contextMenus",
"cookies"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"js": [
"contentScript.bundle.js"
],
"run_at": "document_start"
}
],
"icons": {
"16": "logo192.png",
"48": "logo192.png",
"128": "logo192.png"
},
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"index.html",
"gmailJsLoader.bundle.js",
"extension.bundle.js"
],
"matches": [
"<all_urls>"
]
}
]
}