Open JIRA Ticket

Open JIRA Ticket

Open JIRA tickets easily using the toolbar.

Merlin
Additional files are visible only to premium users

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"
  ]
}