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 |
Eメール | [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" ] } ] } |