Pegmatite
Shows graphs and diagrams rendered by PlantUML.
Co to jest Pegmatite?
Pegmatite to rozszerzenie Chrome opracowane przez 都元ダイスケ (Daisuke), a jego główną funkcją jest „Shows graphs and diagrams rendered by PlantUML.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Pegmatite
Pobierz pliki rozszerzeń Pegmatite w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Pegmatite is Google Chrome extension that replace PlantUML code blocks into preview images.
Podstawowe informacje o rozszerzeniu
Nazwa | Pegmatite |
ID | jegkfbnfbfnohncpcfcimepibmhlkldo |
Oficjalny URL | https://chromewebstore.google.com/detail/pegmatite/jegkfbnfbfnohncpcfcimepibmhlkldo |
Opis | Shows graphs and diagrams rendered by PlantUML. |
Rozmiar pliku | 21.96 KB |
Liczba instalacji | 2,913 |
Aktualna Wersja | 1.6.0 |
Ostatnia Aktualizacja | 2020-01-05 |
Data Publikacji | 2020-01-03 |
Ocena | 4.00/5 Łącznie 6 Oceny |
Deweloper | 都元ダイスケ (Daisuke) |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/dai0304/pegmatite |
Obsługiwane Języki | 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\/*" ] } ] } |