Mermaid + Confluence 💘
Chrome extension which present mermaid graphs in confluence pages..
What is Mermaid + Confluence 💘?
Mermaid + Confluence 💘 is a Chrome extension developed by Omer Shacham, and its main feature is "Chrome extension which present mermaid graphs in confluence pages..".
Extension Screenshots
Download Mermaid + Confluence 💘 Extension CRX File
Download Mermaid + Confluence 💘 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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. Extension Basic Information
| Name | |
| ID | kkcjpjcmclkleblahkhbmfiejbifbbao |
| Official URL | https://chromewebstore.google.com/detail/mermaid-+-confluence-%F0%9F%92%98/kkcjpjcmclkleblahkhbmfiejbifbbao |
| Description | Chrome extension which present mermaid graphs in confluence pages.. |
| File Size | 1.93 MB |
| Installation Count | 31 |
| Current Version | 0.0.3 |
| Last Updated | 2021-04-21 |
| Publish Date | 2021-04-12 |
| Developer | Omer Shacham |
| [email protected] | |
| Payment Type | free |
| Supported Languages | 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"
]
}
]
} | |