Pegmatite

Pegmatite

Shows graphs and diagrams rendered by PlantUML.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pegmatite",
  "version": "1.6.0",
  "description": "Shows graphs and diagrams rendered by PlantUML.",
  "permissions": [
    "storage",
    "https://*/*",
    "tabs"
  ],
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "rawdeflate.js",
        "content-script.js"
      ],
      "matches": [
        "https://github.com/*",
        "https://gist.github.com/*",
        "https://gitpitch.com/*",
        "https://gitlab.com/*",
        "https://bitbucket.org/*",
        "https://*.backlog.jp/wiki/*"
      ]
    }
  ]
}