Pegmatite
Shows graphs and diagrams rendered by PlantUML.
Wat is Pegmatite?
Pegmatite is een Chrome-extensie ontwikkeld door 都元ダイスケ (Daisuke), en de belangrijkste functie is "Shows graphs and diagrams rendered by PlantUML.".
Extensie Screenshots
Download het CRX-bestand van de extensie Pegmatite
Download Pegmatite-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Pegmatite is Google Chrome extension that replace PlantUML code blocks into preview images.
Basisinformatie over de Extensie
Naam | Pegmatite |
ID | jegkfbnfbfnohncpcfcimepibmhlkldo |
Officiële URL | https://chromewebstore.google.com/detail/pegmatite/jegkfbnfbfnohncpcfcimepibmhlkldo |
Beschrijving | Shows graphs and diagrams rendered by PlantUML. |
Bestandsgrootte | 21.96 KB |
Aantal Installaties | 2,913 |
Huidige Versie | 1.6.0 |
Laatst Bijgewerkt | 2020-01-05 |
Publicatiedatum | 2020-01-03 |
Beoordeling | 4.00/5 Totaal 6 Beoordelingen |
Ontwikkelaar | 都元ダイスケ (Daisuke) |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/dai0304/pegmatite |
Ondersteunde Talen | 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\/*" ] } ] } |