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.
拡張機能の基本情報
名前 | Mermaid + Confluence 💘 |
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 |
Eメール | [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" ] } ] } |