mermaid-diagrams
Enable `Mermaid diagrams` on github wiki and markdown files
mermaid-diagrams क्या है?
mermaid-diagrams roy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enable `Mermaid diagrams` on github wiki and markdown files"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में mermaid-diagrams एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |