Pegmatite

Shows graphs and diagrams rendered by PlantUML.

Apa itu Pegmatite?

Pegmatite adalah ekstensi Chrome yang dikembangkan oleh 都元ダイスケ (Daisuke), dan fitur utamanya adalah "Shows graphs and diagrams rendered by PlantUML.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Pegmatite

Unduh file ekstensi Pegmatite dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Pegmatite Pegmatite
ID jegkfbnfbfnohncpcfcimepibmhlkldo
URL Resmi https://chromewebstore.google.com/detail/pegmatite/jegkfbnfbfnohncpcfcimepibmhlkldo
Deskripsi Shows graphs and diagrams rendered by PlantUML.
Ukuran File 21.96 KB
Jumlah Instalasi 2,913
Versi Saat Ini 1.6.0
Terakhir Diperbarui 2020-01-05
Tanggal Publikasi 2020-01-03
Penilaian 4.00/5 Total 6 Penilaian
Pengembang 都元ダイスケ (Daisuke)
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/dai0304/pegmatite
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}