Pegmatite
Shows graphs and diagrams rendered by PlantUML.
Pegmatiteคืออะไร?
Pegmatite เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 都元ダイスケ (Daisuke) และคุณลักษณะหลักของมันคือ "Shows graphs and diagrams rendered by PlantUML."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pegmatite
ดาวน์โหลดไฟล์ส่วนขยาย Pegmatite ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Pegmatite is Google Chrome extension that replace PlantUML code blocks into preview images.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Pegmatite |
ID | jegkfbnfbfnohncpcfcimepibmhlkldo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/pegmatite/jegkfbnfbfnohncpcfcimepibmhlkldo |
คำอธิบาย | Shows graphs and diagrams rendered by PlantUML. |
ขนาดไฟล์ | 21.96 KB |
จำนวนการติดตั้ง | 2,913 |
เวอร์ชันปัจจุบัน | 1.6.0 |
อัปเดตครั้งล่าสุด | 2020-01-05 |
วันที่เผยแพร่ | 2020-01-03 |
คะแนน | 4.00/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | 都元ダイスケ (Daisuke) |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/dai0304/pegmatite |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pegmatite", "version": "1.6.0", "description": "Shows graphs and diagrams rendered by PlantUML.", "permissions": [ "storage", "https:\/\/*\/*", "tabs" ], "options_page": "options.html", "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "rawdeflate.js", "content-script.js" ], "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*", "https:\/\/gitpitch.com\/*", "https:\/\/gitlab.com\/*", "https:\/\/bitbucket.org\/*", "https:\/\/*.backlog.jp\/wiki\/*" ] } ] } |