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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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\/*" ] } ] } |