Inspect and view changes in Open JIRA Ticket 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": "Open JIRA Ticket",
"description": "Open JIRA tickets easily using the toolbar.",
"manifest_version": 3,
"version": "3.1.2",
"author": "jjwong",
"commands": {
"_execute_action": {
"suggested_key": {
"windows": "Ctrl+Shift+K",
"mac": "Command+Shift+K",
"chromeos": "Ctrl+Shift+K",
"linux": "Ctrl+Shift+K"
}
}
},
"background": {
"service_worker": "js/background.js",
"type": "module"
},
"minimum_chrome_version": "92",
"omnibox": {
"keyword": "ojira"
},
"icons": {
"16": "icons/32-toolbar.png",
"48": "icons/48-options.png",
"128": "icons/128-large.png"
},
"action": {
"default_popup": "popup.html"
},
"default_locale": "en",
"options_page": "options.html",
"permissions": [
"storage"
]
}