PlantUML Extension

Show graphs and diagrams rendered by PlantUML.

什麼是PlantUML Extension?

PlantUML Extension是由yeongjun開發的Chrome擴展程式,該擴展的主要功能是“Show graphs and diagrams rendered by PlantUML.”。

擴展截圖

screenshot
screenshot

下載PlantUML Extension擴展crx文件

下載PlantUML Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        GitHub 혹은 Zenhub의 이슈나 PR에서 plantuml 문법을 렌더링하여 보여줍니다.
렌더링 된 이미지는 더블클릭시 기존 코드로 변경됩니다.

* 이슈 수정시에는 페이지 새로고침이 아니므로 확장프로그램 아이콘을 클릭하여 렌더링할 수 있습니다.
* Github 내 .plantuml, .puml, .pu 파일의 렌더링을 지원합니다.                    

擴展基本資訊

名稱 PlantUML Extension PlantUML Extension
ID jbdmdkcjhnceacdkahhpfpijcohplgaj
官方網址 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": []
}