ROAR:JIRA Ticket Search

ROAR:JIRA Ticket Search

Go straight to a JIRA ticket using only the ID by typing J, hitting tab and then entering your ticket ID

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ROAR:JIRA Ticket Search",
  "description": "Go straight to a JIRA ticket using only the ID by typing J, hitting tab and then entering your ticket ID",
  "version": "0.0.4",
  "icons": {
    "16": "src/icons/icon-16.png",
    "48": "src/icons/icon-64.png",
    "128": "src/icons/icon-128.png"
  },
  "omnibox": {
    "keyword": "J "
  },
  "browser_action": {
    "default_popup": "src/popup/popup.html"
  },
  "background": {
    "scripts": [
      "src/background/background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "storage"
  ]
}