Markdown Diagrams

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

Co je Markdown Diagrams?

Markdown Diagrams je rozšíření Chrome vyvinuté modulo.srl, a jeho hlavní funkcí je „Render PlantUML, Mermaid and others graph/diagrams on webpages.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Markdown Diagrams

Stáhněte si soubory rozšíření Markdown Diagrams ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Markdown Diagrams Markdown Diagrams
ID pmoglnmodacnbbofbgcagndelmgaclel
Oficiální URL https://chromewebstore.google.com/detail/markdown-diagrams/pmoglnmodacnbbofbgcagndelmgaclel
Popis Render PlantUML, Mermaid and others graph/diagrams on webpages.
Velikost souboru 155 KB
Počet instalací 5,000
Aktuální Verze 1.21
Poslední Aktualizace 2022-01-26
Datum Vydání 2020-08-16
Hodnocení 4.90/5 Celkem 10 Hodnocení
Vývojář modulo.srl
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/marcozaccari/markdown-diagrams-browser-extension
Podporované Jazyky 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"
        }
    ]
}