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 |
官方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\/*" ] } ] } |