Mermaid diagram renderer for GitHub
Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]).
Что такое Mermaid diagram renderer for GitHub?
Mermaid diagram renderer for GitHub - это расширение Chrome, разработанное tanakafwd.publish, и его основная функция - "Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]).".
Снимки экрана расширения
Скачать файл CRX расширения Mermaid diagram renderer for GitHub
Скачайте файлы расширений Mermaid diagram renderer for GitHub в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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]) Основная информация о расширении
| Название | |
| ID | ahhjfofclhjllmiglebianajpmkabcbc |
| Официальный URL | https://chromewebstore.google.com/detail/mermaid-diagram-renderer/ahhjfofclhjllmiglebianajpmkabcbc |
| Описание | Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]). |
| Размер файла | 302 KB |
| Количество установок | 122 |
| Текущая Версия | 1.0.5 |
| Последнее Обновление | 2022-02-19 |
| Дата публикации | 2021-12-10 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | tanakafwd.publish |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/tanakafwd/mermaid-diagram-renderer |
| Поддерживаемые языки | 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"
]
}
]
} | |