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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://twitter.com/comandogdev |
| URL หน้าช่วยเหลือ | https://twitter.com/comandogdev |
| URL หน้านโยบายความเป็นส่วนตัว | 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"
]
}
]
} | |