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.
Основная информация о расширении
Название | 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" ] } ] } |