Jira Hidebar

Jira Hidebar

Adds a button to the Jira website that allows you to show and hide the right sidebar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Jira Hidebar",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/browse/*",
        "*://*/issues",
        "*://*/issues/*",
        "*://*/*/issues",
        "*://*/*/issues/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "icons": {
    "16": "/images/jira_hidebar16.png",
    "32": "/images/jira_hidebar32.png",
    "48": "/images/jira_hidebar48.png",
    "128": "/images/jira_hidebar128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}