Markdown Diagrams

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

Cos'è Markdown Diagrams?

Markdown Diagrams è un'estensione di Chrome sviluppata da modulo.srl, e la sua funzione principale è "Render PlantUML, Mermaid and others graph/diagrams on webpages.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Markdown Diagrams

Scarica i file di estensione Markdown Diagrams 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

                        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                    

Informazioni di Base sull'Estensione

Nome Markdown Diagrams Markdown Diagrams
ID pmoglnmodacnbbofbgcagndelmgaclel
URL Ufficiale https://chromewebstore.google.com/detail/markdown-diagrams/pmoglnmodacnbbofbgcagndelmgaclel
Descrizione Render PlantUML, Mermaid and others graph/diagrams on webpages.
Dimensione del File 155 KB
Conteggio Installazioni 5,000
Versione Corrente 1.21
Ultimo Aggiornamento 2022-01-26
Data di Pubblicazione 2020-08-16
Valutazione 4.90/5 Totale 10 Valutazioni
Sviluppatore modulo.srl
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/marcozaccari/markdown-diagrams-browser-extension
Lingue Supportate 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"
        }
    ]
}