Atlassian Helper

Atlassian Helper

Some handy helpers for Atlassian products

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Atlassian Helper",
  "version": "1.2",
  "description": "Some handy helpers for Atlassian products",
  "content_scripts": [
    {
      "matches": [
        "*://*.atlassian.net/*"
      ],
      "js": [
        "index.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "index.js"
      ],
      "run_at": "document_end"
    }
  ]
}