Blueprint Viewer
Read .bp files in a GIT repository
什么是Blueprint Viewer?
Blueprint Viewer是由Miquel Camps Orteza开发的Chrome扩展程序,该扩展的主要功能是“Read .bp files in a GIT repository”。
扩展截图
下载Blueprint Viewer扩展crx文件
下载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.
扩展基本信息
名称 | 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" ] } ] } |