Blueprint Viewer
Read .bp files in a GIT repository
Blueprint Viewer là gì?
Blueprint Viewer là một tiện ích mở rộng Chrome được phát triển bởi Miquel Camps Orteza, và tính năng chính của nó là "Read .bp files in a GIT repository".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Blueprint Viewer
Tải xuống các tệp mở rộng Blueprint Viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Blueprint Viewer |
ID | hlnomclepllonnagpdgafgclohhpbhgo |
URL Chính Thức | https://chromewebstore.google.com/detail/blueprint-viewer/hlnomclepllonnagpdgafgclohhpbhgo |
Mô tả | Read .bp files in a GIT repository |
Kích Thước Tệp | 73.82 KB |
Số Lần Cài Đặt | 108 |
Phiên Bản Hiện Tại | 0.3 |
Cập Nhật Lần Cuối | 2023-01-06 |
Ngày Phát Hành | 2023-01-03 |
Nhà Phát Triển | Miquel Camps Orteza |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://twitter.com/comandogdev |
URL Trang Trợ Giúp | https://twitter.com/comandogdev |
URL Trang Chính Sách Bảo Mật | https://comandogdev.github.io/privacidad.html |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |