Mermaid + Confluence 💘
Chrome extension which present mermaid graphs in confluence pages..
什么是Mermaid + Confluence 💘?
Mermaid + Confluence 💘是由Omer Shacham开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension which present mermaid graphs in confluence pages..”。
扩展截图
下载Mermaid + Confluence 💘扩展crx文件
下载Mermaid + Confluence 💘扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        A browser extension for Chrome, Opera & Firefox that adds Mermaid language support to GitHub.
Create diagrams using code blocks on Confluence files:
```mermaid
graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;
```
Visit https://mermaidjs.github.io/ for more information about Mermaid language syntax.                     扩展基本信息
| 名称 |   |  
| ID | kkcjpjcmclkleblahkhbmfiejbifbbao | 
| 官方URL | https://chromewebstore.google.com/detail/mermaid-+-confluence-%F0%9F%92%98/kkcjpjcmclkleblahkhbmfiejbifbbao | 
| 简介 | Chrome extension which present mermaid graphs in confluence pages.. | 
| 文件大小 | 1.93 MB | 
| 安装次数 | 31 | 
| 当前版本 | 0.0.3 | 
| 更新时间 | 2021-04-21 | 
| 上架时间 | 2021-04-12 | 
| 开发者 | Omer Shacham | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 支持的语言 | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mermaid + Confluence \ud83d\udc98",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Chrome extension which present mermaid graphs in confluence pages..",
    "homepage_url": "https:\/\/github.com\/om3rr",
    "icons": {
        "16": "icons\/16x16.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "browser_action": {
        "default_title": "TSRWPCX",
        "default_popup": "popup.html"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "https:\/\/*\/*"
    ],
    "content_security_policy": "default-src 'self';",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ]
}  |  |