Pegmatite

Shows graphs and diagrams rendered by PlantUML.

Qu'est-ce que Pegmatite ?

Pegmatite est une extension Chrome développée par 都元ダイスケ (Daisuke), et sa fonction principale est "Shows graphs and diagrams rendered by PlantUML.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Pegmatite

Téléchargez les fichiers d'extension Pegmatite au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Pegmatite Pegmatite
ID jegkfbnfbfnohncpcfcimepibmhlkldo
URL Officiel https://chromewebstore.google.com/detail/pegmatite/jegkfbnfbfnohncpcfcimepibmhlkldo
Description Shows graphs and diagrams rendered by PlantUML.
Taille du Fichier 21.96 KB
Nombre d'Installations 2,913
Version Actuelle 1.6.0
Dernière Mise à Jour 2020-01-05
Date de Publication 2020-01-03
Évaluation 4.00/5 Total 6 Évaluations
Développeur 都元ダイスケ (Daisuke)
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/dai0304/pegmatite
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}