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".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة mermaid-diagrams

قم بتنزيل ملفات الامتداد mermaid-diagrams بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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"
            ]
        }
    ]
}