Blueprint Viewer
Read .bp files in a GIT repository
ما هو Blueprint Viewer؟
Blueprint Viewer هو إضافة Chrome تم تطويرها بواسطة Miquel Camps Orteza، والميزة الرئيسية لها هي "Read .bp files in a GIT repository".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Blueprint Viewer
قم بتنزيل ملفات الامتداد Blueprint Viewer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Read Unreal Engine blueprints in a GIT repository (github, gitlab, bitbucket) You need to open the file in a new tab to load the blueprint viewer.
معلومات أساسية عن التمديد
| الاسم | |
| ID | hlnomclepllonnagpdgafgclohhpbhgo |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/blueprint-viewer/hlnomclepllonnagpdgafgclohhpbhgo |
| الوصف | Read .bp files in a GIT repository |
| حجم الملف | 73.82 KB |
| عدد التثبيتات | 108 |
| النسخة الحالية | 0.3 |
| آخر تحديث | 2023-01-06 |
| تاريخ النشر | 2023-01-03 |
| المطور | Miquel Camps Orteza |
| البريد الإلكتروني | gafeman@gmail.com |
| نوع الدفع | free |
| موقع الإضافة | https://twitter.com/comandogdev |
| عنوان صفحة المساعدة | https://twitter.com/comandogdev |
| عنوان صفحة سياسة الخصوصية | https://comandogdev.github.io/privacidad.html |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Blueprint Viewer",
"description": "Read .bp files in a GIT repository",
"version": "0.3",
"permissions": [
"https:\/\/github.com\/*",
"https:\/\/bitbucket.org\/*",
"https:\/\/gitlab.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*",
"https:\/\/bitbucket.org\/*",
"https:\/\/gitlab.com\/*"
],
"js": [
"jquery-3.6.3.min.js",
"general.js"
],
"run_at": "document_end"
}
],
"icons": {
"48": "icon.png"
},
"manifest_version": 3,
"web_accessible_resources": [
{
"matches": [
"https:\/\/github.com\/*",
"https:\/\/bitbucket.org\/*",
"https:\/\/gitlab.com\/*"
],
"resources": [
"viewer.html",
"bue-render\/render.js"
]
}
]
} | |