Pegmatite
Shows graphs and diagrams rendered by PlantUML.
O que é Pegmatite?
Pegmatite é uma extensão do Chrome desenvolvida por 都元ダイスケ (Daisuke), e sua principal característica é "Shows graphs and diagrams rendered by PlantUML.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Pegmatite
Baixe arquivos de extensão Pegmatite no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Pegmatite is Google Chrome extension that replace PlantUML code blocks into preview images.
Informações Básicas da Extensão
Nome | Pegmatite |
ID | jegkfbnfbfnohncpcfcimepibmhlkldo |
URL Oficial | https://chromewebstore.google.com/detail/pegmatite/jegkfbnfbfnohncpcfcimepibmhlkldo |
Descrição | Shows graphs and diagrams rendered by PlantUML. |
Tamanho do Arquivo | 21.96 KB |
Contagem de Instalações | 2,913 |
Versão Atual | 1.6.0 |
Última Atualização | 2020-01-05 |
Data de Publicação | 2020-01-03 |
Classificação | 4.00/5 Total de 6 Avaliações |
Desenvolvedor | 都元ダイスケ (Daisuke) |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/dai0304/pegmatite |
Idiomas Suportados | 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\/*" ] } ] } |