Mermaid diagram renderer for GitHub
Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]).
Wat is Mermaid diagram renderer for GitHub?
Mermaid diagram renderer for GitHub is een Chrome-extensie ontwikkeld door tanakafwd.publish, en de belangrijkste functie is "Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]).".
Extensie Screenshots
Download het CRX-bestand van de extensie Mermaid diagram renderer for GitHub
Download Mermaid diagram renderer for GitHub-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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]) Basisinformatie over de Extensie
| Naam | |
| ID | ahhjfofclhjllmiglebianajpmkabcbc |
| Officiële URL | https://chromewebstore.google.com/detail/mermaid-diagram-renderer/ahhjfofclhjllmiglebianajpmkabcbc |
| Beschrijving | Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]). |
| Bestandsgrootte | 302 KB |
| Aantal Installaties | 122 |
| Huidige Versie | 1.0.5 |
| Laatst Bijgewerkt | 2022-02-19 |
| Publicatiedatum | 2021-12-10 |
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | tanakafwd.publish |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/tanakafwd/mermaid-diagram-renderer |
| Ondersteunde Talen | 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"
]
}
]
} | |