mermaid-diagrams
Enable `Mermaid diagrams` on github wiki and markdown files
mermaid-diagramsคืออะไร?
mermaid-diagrams เป็นส่วนขยายของ Chrome ที่พัฒนาโดย roy และคุณลักษณะหลักของมันคือ "Enable `Mermaid diagrams` on github wiki and markdown files"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย mermaid-diagrams
ดาวน์โหลดไฟล์ส่วนขยาย mermaid-diagrams ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Enable `Mermaid diagrams` on github wiki and markdown files like the ones found here: http://knsv.github.io/mermaid/index.html. For example add this to any wiki page or markdown file in github ```mermaid sequenceDiagram A->> B: Query B->> C: Forward query Note right of C: Thinking... C->> B: Response B->> A: Forward response ``` This will generate a nice diagram if loaded from github. The extension will just replace the code block with the generated diagram.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | mermaid-diagrams |
ID | phfcghedmopjadpojhmmaffjmfiakfil |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mermaid-diagrams/phfcghedmopjadpojhmmaffjmfiakfil |
คำอธิบาย | Enable `Mermaid diagrams` on github wiki and markdown files |
ขนาดไฟล์ | 436 KB |
จำนวนการติดตั้ง | 2,735 |
เวอร์ชันปัจจุบัน | 2.0.0 |
อัปเดตครั้งล่าสุด | 2020-06-22 |
วันที่เผยแพร่ | 2020-06-21 |
คะแนน | 3.33/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | roy |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Redisrupt/mermaid-diagrams |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "mermaid-diagrams", "version": "2.0.0", "description": "Enable `Mermaid diagrams` on github wiki and markdown files", "homepage_url": "https:\/\/github.com\/Redisrupt\/mermaid-diagrams", "manifest_version": 2, "minimum_chrome_version": "56", "permissions": [ "https:\/\/*.visualstudio.com\/*", "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*", "https:\/\/bitbucket.org\/*" ], "icons": { "128": "icon.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/*.visualstudio.com\/*", "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*", "https:\/\/bitbucket.org\/*" ], "css": [ "diagrams.css", "on_change_animation.css" ], "js": [ "mermaid.min.js", "content.js" ] } ] } |