Pegmatite
Shows graphs and diagrams rendered by PlantUML.
Что такое Pegmatite?
Pegmatite - это расширение Chrome, разработанное 都元ダイスケ (Daisuke), и его основная функция - "Shows graphs and diagrams rendered by PlantUML.".
Снимки экрана расширения
Скачать файл CRX расширения Pegmatite
Скачайте файлы расширений 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\/*" ] } ] } |