Markdown Diagrams

Render PlantUML, Mermaid and others graph/diagrams on webpages.

Qu'est-ce que Markdown Diagrams ?

Markdown Diagrams est une extension Chrome développée par modulo.srl, et sa fonction principale est "Render PlantUML, Mermaid and others graph/diagrams on webpages.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Markdown Diagrams

Téléchargez les fichiers d'extension Markdown Diagrams 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

                        A browser extension for Chrome, Edge, Opera and Firefox that renders markdown diagrams and charts code blocks into preview images.

Supports many languages: PlantUML, Mermaid, GraphViz and many more (full list on website).

Supports any website:
- GitHub, GitLab, Bitbucket: md files, pull requests, issues, gists, wiki...
- Atlassian: Jira, Confluence, Trello...
- all other websites trying known patterns.
- local files when rendered with some markdown extension.

How to use: simply put diagram or chart code into a blockquote

```language
code here
```

Double click to rendered diagram to swith to code/diagram.
Click to extension icon to disable/enable parsing in current browser tab.

Examples
https://gitlab.com/markzackie/markdown-diagrams-browser-extension/-/tree/master/doc/examples
https://bitbucket.org/marcozaccari2/markdown-diagrams-browser-extension/src/master/doc/examples
https://github.com/marcozaccari/markdown-diagrams-browser-extension                    

Informations de Base sur l'Extension

Nom Markdown Diagrams Markdown Diagrams
ID pmoglnmodacnbbofbgcagndelmgaclel
URL Officiel https://chromewebstore.google.com/detail/markdown-diagrams/pmoglnmodacnbbofbgcagndelmgaclel
Description Render PlantUML, Mermaid and others graph/diagrams on webpages.
Taille du Fichier 155 KB
Nombre d'Installations 5,000
Version Actuelle 1.21
Dernière Mise à Jour 2022-01-26
Date de Publication 2020-08-16
Évaluation 4.90/5 Total 10 Évaluations
Développeur modulo.srl
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/marcozaccari/markdown-diagrams-browser-extension
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Markdown Diagrams",
    "description": "Render PlantUML, Mermaid and others graph\/diagrams on webpages.",
    "version": "1.21",
    "manifest_version": 2,
    "permissions": [
        "storage",
        ""
    ],
    "options_ui": {
        "page": "settings\/index.html"
    },
    "background": {
        "scripts": [
            "js\/pako_deflate.js",
            "js\/settings.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon128.png",
        "default_title": "Markdown Diagrams"
    },
    "content_scripts": [
        {
            "js": [
                "js\/settings.js",
                "js\/sites.js",
                "js\/diagrams.js",
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*.md",
                "file:\/\/*\/*.MD",
                "file:\/\/*\/*.markdown",
                "file:\/\/*\/*.mdown",
                "file:\/\/*\/*.mkd",
                "file:\/\/*\/*.rmd",
                "file:\/\/*\/*.rst",
                "file:\/\/*\/*.txt"
            ],
            "run_at": "document_idle"
        }
    ]
}