Pegmatite
Shows graphs and diagrams rendered by PlantUML.
Vad är Pegmatite?
Pegmatite är en Chrome-tillägg utvecklad av 都元ダイスケ (Daisuke), och dess huvudfunktion är "Shows graphs and diagrams rendered by PlantUML.".
Tilläggsskärmbilder
Ladda ner Pegmatite-förlängningens CRX-fil
Ladda ner Pegmatite-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Pegmatite is Google Chrome extension that replace PlantUML code blocks into preview images.
Grundläggande Information om Tillägg
Namn | Pegmatite |
ID | jegkfbnfbfnohncpcfcimepibmhlkldo |
Officiell webbadress | https://chromewebstore.google.com/detail/pegmatite/jegkfbnfbfnohncpcfcimepibmhlkldo |
Beskrivning | Shows graphs and diagrams rendered by PlantUML. |
Filstorlek | 21.96 KB |
Antal Installationer | 2,913 |
Aktuell Version | 1.6.0 |
Senast Uppdaterad | 2020-01-05 |
Publiceringsdatum | 2020-01-03 |
Betyg | 4.00/5 Totalt 6 Betyg |
Utvecklare | 都元ダイスケ (Daisuke) |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/dai0304/pegmatite |
Stödda Språk | 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\/*" ] } ] } |