Mermaid diagram renderer for GitHub
Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]).
O que é Mermaid diagram renderer for GitHub?
Mermaid diagram renderer for GitHub é uma extensão do Chrome desenvolvida por tanakafwd.publish, e sua principal característica é "Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]).".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Mermaid diagram renderer for GitHub
Baixe arquivos de extensão Mermaid diagram renderer for GitHub no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
NOTE: As announced at 2022-02-14, now GitHub officially supports Mermaid code blocks in Markdown files. You no longer need to install this Chrome extension in most cases. https://github.blog/2022-02-14-include-diagrams-markdown-files-mermaid/ An extension for Google Chrome and Chromium to render mermaid diagrams in markdown files in GitHub (https://github.com/*) and GitHub Gist (https://gist.github.com/*). Features: * The extension renders mermaid code blocks without sending the mermaid code to non-GitHub services, which is suitable for private repositories. * The embedded mermaid version: ([email protected])
Informações Básicas da Extensão
Nome | Mermaid diagram renderer for GitHub |
ID | ahhjfofclhjllmiglebianajpmkabcbc |
URL Oficial | https://chromewebstore.google.com/detail/mermaid-diagram-renderer/ahhjfofclhjllmiglebianajpmkabcbc |
Descrição | Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]). |
Tamanho do Arquivo | 302 KB |
Contagem de Instalações | 122 |
Versão Atual | 1.0.5 |
Última Atualização | 2022-02-19 |
Data de Publicação | 2021-12-10 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | tanakafwd.publish |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/tanakafwd/mermaid-diagram-renderer |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mermaid diagram renderer for GitHub", "version": "1.0.5", "description": "Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]).", "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "js": [ "third-party\/mermaid.min.js", "content-script.js" ] } ] } |