Mermaid diagram renderer for GitHub
Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]).
Mermaid diagram renderer for GitHub là gì?
Mermaid diagram renderer for GitHub là một tiện ích mở rộng Chrome được phát triển bởi tanakafwd.publish, và tính năng chính của nó là "Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]).".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Mermaid diagram renderer for GitHub
Tải xuống các tệp mở rộng Mermaid diagram renderer for GitHub dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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])
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Mermaid diagram renderer for GitHub |
ID | ahhjfofclhjllmiglebianajpmkabcbc |
URL Chính Thức | https://chromewebstore.google.com/detail/mermaid-diagram-renderer/ahhjfofclhjllmiglebianajpmkabcbc |
Mô tả | Render mermaid diagrams in markdown files in GitHub and GitHub Gist ([email protected]). |
Kích Thước Tệp | 302 KB |
Số Lần Cài Đặt | 122 |
Phiên Bản Hiện Tại | 1.0.5 |
Cập Nhật Lần Cuối | 2022-02-19 |
Ngày Phát Hành | 2021-12-10 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | tanakafwd.publish |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/tanakafwd/mermaid-diagram-renderer |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |