Blueprint Viewer
Read .bp files in a GIT repository
Co je Blueprint Viewer?
Blueprint Viewer je rozšíření Chrome vyvinuté Miquel Camps Orteza, a jeho hlavní funkcí je „Read .bp files in a GIT repository“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Blueprint Viewer
Stáhněte si soubory rozšíření Blueprint Viewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Blueprint Viewer |
ID | hlnomclepllonnagpdgafgclohhpbhgo |
Oficiální URL | https://chromewebstore.google.com/detail/blueprint-viewer/hlnomclepllonnagpdgafgclohhpbhgo |
Popis | Read .bp files in a GIT repository |
Velikost souboru | 73.82 KB |
Počet instalací | 108 |
Aktuální Verze | 0.3 |
Poslední Aktualizace | 2023-01-06 |
Datum Vydání | 2023-01-03 |
Vývojář | Miquel Camps Orteza |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://twitter.com/comandogdev |
URL Stránky Nápovědy | https://twitter.com/comandogdev |
URL Stránky Zásad Ochrany Soukromí | https://comandogdev.github.io/privacidad.html |
Podporované Jazyky | 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" ] } ] } |