Monkeys | Mermaid for Github and Bitbucket

Monkeys | Mermaid for Github and Bitbucket

Renders charts from Mermaid markup on Github and Bitbucket

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Monkeys | Mermaid for Github and Bitbucket",
  "description": "Renders charts from Mermaid markup on Github and Bitbucket",
  "version": "1.0.0",
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://github.com/*",
        "*://bitbucket.org/*"
      ],
      "css": [
        "mermaid.forest.css"
      ],
      "js": [
        "mermaid.js",
        "init.js"
      ]
    }
  ]
}