Pegmatite

Shows graphs and diagrams rendered by PlantUML.

Cos'è Pegmatite?

Pegmatite è un'estensione di Chrome sviluppata da 都元ダイスケ (Daisuke), e la sua funzione principale è "Shows graphs and diagrams rendered by PlantUML.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Pegmatite

Scarica i file di estensione Pegmatite in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Pegmatite Pegmatite
ID jegkfbnfbfnohncpcfcimepibmhlkldo
URL Ufficiale https://chromewebstore.google.com/detail/pegmatite/jegkfbnfbfnohncpcfcimepibmhlkldo
Descrizione Shows graphs and diagrams rendered by PlantUML.
Dimensione del File 21.96 KB
Conteggio Installazioni 2,913
Versione Corrente 1.6.0
Ultimo Aggiornamento 2020-01-05
Data di Pubblicazione 2020-01-03
Valutazione 4.00/5 Totale 6 Valutazioni
Sviluppatore 都元ダイスケ (Daisuke)
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/dai0304/pegmatite
Lingue Supportate 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\/*"
            ]
        }
    ]
}