Pegmatite

Shows graphs and diagrams rendered by PlantUML.

What is Pegmatite?

Pegmatite is a Chrome extension developed by 都元ダイスケ (Daisuke), and its main feature is "Shows graphs and diagrams rendered by PlantUML.".

Extension Screenshots

screenshot

Download Pegmatite Extension CRX File

Download Pegmatite extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Pegmatite is Google Chrome extension that replace PlantUML code blocks into preview images.                    

Extension Basic Information

Name Pegmatite Pegmatite
ID jegkfbnfbfnohncpcfcimepibmhlkldo
Official URL https://chromewebstore.google.com/detail/pegmatite/jegkfbnfbfnohncpcfcimepibmhlkldo
Description Shows graphs and diagrams rendered by PlantUML.
File Size 21.96 KB
Installation Count 2,913
Current Version 1.6.0
Last Updated 2020-01-05
Publish Date 2020-01-03
Rating 4.00/5 Total 6 Ratings
Developer 都元ダイスケ (Daisuke)
Email [email protected]
Payment Type free
Extension Website https://github.com/dai0304/pegmatite
Supported Languages en
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\/*"
            ]
        }
    ]
}