Mermaid + Confluence 💘

Mermaid + Confluence 💘

Chrome extension which present mermaid graphs in confluence pages..

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mermaid + Confluence 💘",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "Chrome extension which present mermaid graphs in confluence pages..",
  "homepage_url": "https://github.com/om3rr",
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "browser_action": {
    "default_title": "TSRWPCX",
    "default_popup": "popup.html"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "https://*/*"
  ],
  "content_security_policy": "default-src 'self';",
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ]
}