Pegmatite

Shows graphs and diagrams rendered by PlantUML.

Pegmatiteとは何ですか?

Pegmatiteは都元ダイスケ (Daisuke)によって開発されたChromeの拡張機能で、その主な機能は「Shows graphs and diagrams rendered by PlantUML.」です。

拡張機能のスクリーンショット

screenshot

Pegmatite拡張機能のCRXファイルをダウンロード

Pegmatite拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Pegmatite Pegmatite
ID jegkfbnfbfnohncpcfcimepibmhlkldo
公式URL https://chromewebstore.google.com/detail/pegmatite/jegkfbnfbfnohncpcfcimepibmhlkldo
説明 Shows graphs and diagrams rendered by PlantUML.
ファイルサイズ 21.96 KB
インストール数 2,913
現在のバージョン 1.6.0
最終更新日 2020-01-05
公開日 2020-01-03
評価 4.00/5 合計 6 レビュー
開発者 都元ダイスケ (Daisuke)
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/dai0304/pegmatite
対応言語 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\/*"
            ]
        }
    ]
}