Inspect and view changes in JIRA Notification Notifier 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 Notification Notifier",
"version": "0.1.1",
"description": "Plays notification when JIRA notification arrives. It will need access to show notification, allow it when request popup appears.",
"manifest_version": 3,
"permissions": [
"storage"
],
"background": {
"service_worker": "./background.js"
},
"host_permissions": [
"https://*.atlassian.net/"
],
"content_scripts": [
{
"matches": [
"https://*.atlassian.net/*"
],
"js": [
"./jira-notification-check-v2.js",
"./third-party/jquery-1.12.4.js",
"./third-party/jquery-ui-1.12.1.js"
]
}
]
}