Quickly opens the JIRA with the corresponding ticket
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": "Quick JIRA",
"short_name": "quiji",
"version": "1.0.0",
"manifest_version": 3,
"author": "Tim 'timbru31' Brust",
"description": "__MSG_appDesc__",
"action": {
"default_icon": {
"16": "images/icon16.png",
"20": "images/icon20.png",
"25": "images/icon25.png",
"30": "images/icon30.png",
"32": "images/icon32.png",
"40": "images/icon40.png",
"48": "images/icon48.png",
"64": "images/icon64.png"
},
"default_popup": "html/popup.html",
"default_title": "__MSG_defaultTitle__"
},
"default_locale": "en",
"options_page": "html/options.html",
"permissions": [
"activeTab",
"contextMenus",
"storage",
"commands",
"scripting"
],
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"64": "images/icon64.png",
"128": "images/icon128.png"
},
"commands": {
"open-ticket-in-current-tab": {
"description": "__MSG_openInCurrentTab__",
"suggested_key": {
"default": "Alt+K",
"windows": "Alt+K",
"mac": "Alt+K",
"chromeos": "Alt+K",
"linux": "Alt+K"
}
},
"open-ticket-in-new-tab": {
"description": "__MSG_openInNewTab__",
"suggested_key": {
"default": "Alt+Shift+K",
"windows": "Alt+Shift+K",
"mac": "Alt+Shift+K",
"chromeos": "Alt+Shift+K",
"linux": "Alt+Shift+K"
}
},
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+K",
"windows": "Ctrl+Shift+K",
"mac": "Command+Shift+K",
"chromeos": "Ctrl+Shift+K",
"linux": "Ctrl+Shift+K"
}
}
},
"omnibox": {
"keyword": "jira"
},
"background": {
"service_worker": "js/background.js",
"type": "module"
},
"minimum_chrome_version": "125",
"browser_specific_settings": {
"gecko": {
"id": "{25e741fe-a00f-4568-9197-f5a591f1b56d}"
}
}
}