PlantUML Extension
Show graphs and diagrams rendered by PlantUML.
PlantUML Extension란 무엇입니까?
PlantUML Extension은(는) yeongjun에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show graphs and diagrams rendered by PlantUML."입니다.
확장 프로그램 스크린샷
PlantUML Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
GitHub 혹은 Zenhub의 이슈나 PR에서 plantuml 문법을 렌더링하여 보여줍니다. 렌더링 된 이미지는 더블클릭시 기존 코드로 변경됩니다. * 이슈 수정시에는 페이지 새로고침이 아니므로 확장프로그램 아이콘을 클릭하여 렌더링할 수 있습니다. * Github 내 .plantuml, .puml, .pu 파일의 렌더링을 지원합니다.
확장 프로그램 기본 정보
이름 | PlantUML Extension |
ID | jbdmdkcjhnceacdkahhpfpijcohplgaj |
공식 URL | https://chromewebstore.google.com/detail/plantuml-extension/jbdmdkcjhnceacdkahhpfpijcohplgaj |
설명 | Show graphs and diagrams rendered by PlantUML. |
파일 크기 | 297 KB |
설치 횟수 | 864 |
현재 버전 | 21.2.10 |
최근 업데이트 | 2021-02-10 |
출시 날짜 | 2020-06-18 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | yeongjun |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/wicksome/plantuml-extension |
도움말 페이지 URL | https://github.com/wicksome/plantuml-extension/issues |
지원되는 언어 | ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PlantUML Extension", "version": "21.2.10", "description": "Show graphs and diagrams rendered by PlantUML.", "homepage_url": "https:\/\/github.com\/wicksome\/plantuml-extension", "manifest_version": 2, "minimum_chrome_version": "74", "icons": { "16": "icon\/icon16.png", "48": "icon\/icon48.png", "128": "icon\/icon128.png" }, "permissions": [ "storage", "contextMenus", "activeTab", "tabs" ], "optional_permissions": [ "*:\/\/*\/*" ], "options_ui": { "chrome_style": true, "page": "options.html" }, "browser_action": { "default_icon": "icon\/icon16.png" }, "background": { "persistent": false, "scripts": [ "browser-polyfill.min.js", "background.js" ] }, "content_scripts": [ { "js": [ "plantuml-extension.js" ], "matches": [ "https:\/\/github.com\/*" ] } ], "web_accessible_resources": [] } |