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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.
확장 프로그램 기본 정보
이름 | 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" ] } ] } |