Glossary for Confluence Cloud

Glossary for Confluence Cloud

Highlight technical terms in your Confluence documentation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Glossary for Confluence Cloud",
  "description": "Highlight technical terms in your Confluence documentation.",
  "version": "0.1.2",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "96": "img/icon96.png",
    "128": "img/icon128.png"
  },
  "homepage_url": "https://marketplace.atlassian.com/plugins/glossary/cloud/",
  "author": "Peter Eigenschink",
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "https://*.atlassian.net/*"
      ],
      "js": [
        "js/load-glossary-lookup.js"
      ]
    }
  ],
  "options_ui": {
    "page": "html/options.html"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "js/glossary-lookup.js",
    "css/glossary-lookup.css",
    "css/glossary-match-border.css",
    "css/glossary-match-icon.css",
    "css/glossary-match-underline.css",
    "img/icon.svg"
  ]
}