Mermaid + Confluence 💘
Chrome extension which present mermaid graphs in confluence pages..
O que é Mermaid + Confluence 💘?
Mermaid + Confluence 💘 é uma extensão do Chrome desenvolvida por Omer Shacham, e sua principal característica é "Chrome extension which present mermaid graphs in confluence pages..".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Mermaid + Confluence 💘
Baixe arquivos de extensão Mermaid + Confluence 💘 no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Mermaid + Confluence 💘 |
ID | kkcjpjcmclkleblahkhbmfiejbifbbao |
URL Oficial | https://chromewebstore.google.com/detail/mermaid-+-confluence-%F0%9F%92%98/kkcjpjcmclkleblahkhbmfiejbifbbao |
Descrição | Chrome extension which present mermaid graphs in confluence pages.. |
Tamanho do Arquivo | 1.93 MB |
Contagem de Instalações | 31 |
Versão Atual | 0.0.3 |
Última Atualização | 2021-04-21 |
Data de Publicação | 2021-04-12 |
Desenvolvedor | Omer Shacham |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |