Mermaid Markdown

Mermaid Markdown

A Chrome extension that renders mermaid markdowns into graphs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mermaid Markdown",
  "version": "1.0.0",
  "description": "A Chrome extension that renders mermaid markdowns into graphs",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "Mermaid Markdown",
    "default_icon": "img/48.png",
    "default_popup": "html/popup-found.html"
  },
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "options_page": "html/options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/backgroundScript.js"
    ]
  },
  "web_accessible_resources": [
    "*/*",
    "*"
  ],
  "permissions": [
    "tabs",
    "storage",
    "nativeMessaging",
    "webNavigation",
    "http://*/*",
    "https://*/*",
    "file:///*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval';  object-src 'self'"
}