Pegmatite
Shows graphs and diagrams rendered by PlantUML.
什麼是Pegmatite?
Pegmatite是由都元ダイスケ (Daisuke)開發的Chrome擴展程式,該擴展的主要功能是“Shows graphs and diagrams rendered by PlantUML.”。
擴展截圖
下載Pegmatite擴展crx文件
下載Pegmatite擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Pegmatite is Google Chrome extension that replace PlantUML code blocks into preview images.
擴展基本資訊
名稱 | Pegmatite |
ID | jegkfbnfbfnohncpcfcimepibmhlkldo |
官方網址 | 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\/*" ] } ] } |