Confluence - Expand all plugin

Confluence - Expand all plugin

Generates a button that allows users to expand all expandable boxes at once on the Confluence page. Alternatively, you can press Ctrl + E Note! The plugin works only with expand boxes, not with macros.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "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"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}