Better Jira UX

Better Jira UX

The extension that brings long-needed UX fixes to Jira.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "The extension that brings long-needed UX fixes to Jira.",
  "version": "1.0.1",
  "manifest_version": 2,
  "name": "Better Jira UX",
  "icons": {
    "34": "icon-34.png",
    "128": "icon-128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "author": "Adam Karmiński - https://github.com/adamkarminski",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.atlassian.net/*"
      ],
      "js": [
        "content.bundle.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "unassigned.png"
  ]
}