Jira in Microsoft Edge

Jira in Microsoft Edge

Jira & Chrome Extension: Manage Issues Effortlessly Without Switching to Jira.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Jira in Microsoft Edge",
  "short_name": "E2T",
  "description": "Jira & Chrome Extension: Manage Issues Effortlessly Without Switching to Jira.",
  "version": "2.9.4",
  "manifest_version": 3,
  "action": {
    "default_title": "Jira in Microsoft Edge",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "cookies"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "logo192.png",
    "48": "logo192.png",
    "128": "logo192.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "gmailJsLoader.bundle.js",
        "extension.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}