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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" ] } ] } |