Blueprint Viewer
Read .bp files in a GIT repository
Apa itu Blueprint Viewer?
Blueprint Viewer adalah ekstensi Chrome yang dikembangkan oleh Miquel Camps Orteza, dan fitur utamanya adalah "Read .bp files in a GIT repository".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Blueprint Viewer
Unduh file ekstensi Blueprint Viewer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Blueprint Viewer |
ID | hlnomclepllonnagpdgafgclohhpbhgo |
URL Resmi | https://chromewebstore.google.com/detail/blueprint-viewer/hlnomclepllonnagpdgafgclohhpbhgo |
Deskripsi | Read .bp files in a GIT repository |
Ukuran File | 73.82 KB |
Jumlah Instalasi | 108 |
Versi Saat Ini | 0.3 |
Terakhir Diperbarui | 2023-01-06 |
Tanggal Publikasi | 2023-01-03 |
Pengembang | Miquel Camps Orteza |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://twitter.com/comandogdev |
URL Halaman Bantuan | https://twitter.com/comandogdev |
URL Halaman Kebijakan Privasi | https://comandogdev.github.io/privacidad.html |
Bahasa yang Didukung | 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" ] } ] } |