Mermaid diagram renderer for GitHub
Render mermaid diagrams in markdown files in GitHub and GitHub Gist (mermaid@8.14.0).
What is Mermaid diagram renderer for GitHub?
Mermaid diagram renderer for GitHub is a Chrome extension developed by tanakafwd.publish, and its main feature is "Render mermaid diagrams in markdown files in GitHub and GitHub Gist (mermaid@8.14.0).".
Extension Screenshots
Download Mermaid diagram renderer for GitHub Extension CRX File
Download Mermaid diagram renderer for GitHub extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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: (mermaid@8.14.0)
Extension Basic Information
Name | |
ID | ahhjfofclhjllmiglebianajpmkabcbc |
Official URL | https://chromewebstore.google.com/detail/mermaid-diagram-renderer/ahhjfofclhjllmiglebianajpmkabcbc |
Description | Render mermaid diagrams in markdown files in GitHub and GitHub Gist (mermaid@8.14.0). |
File Size | 302 KB |
Installation Count | 122 |
Current Version | 1.0.5 |
Last Updated | 2022-02-19 |
Publish Date | 2021-12-10 |
Rating | 5.00/5 Total 2 Ratings |
Developer | tanakafwd.publish |
tanakafwd.publish@gmail.com | |
Payment Type | free |
Extension Website | https://github.com/tanakafwd/mermaid-diagram-renderer |
Supported Languages | 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 (mermaid@8.14.0).", "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" ] } ] } |