PlantUML Extension

Show graphs and diagrams rendered by PlantUML.

PlantUML Extensionคืออะไร?

PlantUML Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yeongjun และคุณลักษณะหลักของมันคือ "Show graphs and diagrams rendered by PlantUML."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PlantUML Extension

ดาวน์โหลดไฟล์ส่วนขยาย PlantUML Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ PlantUML Extension 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": []
}