Blueprint Viewer
Read .bp files in a GIT repository
Wat is Blueprint Viewer?
Blueprint Viewer is een Chrome-extensie ontwikkeld door Miquel Camps Orteza, en de belangrijkste functie is "Read .bp files in a GIT repository".
Extensie Screenshots
Download het CRX-bestand van de extensie Blueprint Viewer
Download Blueprint Viewer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Blueprint Viewer |
ID | hlnomclepllonnagpdgafgclohhpbhgo |
Officiële URL | https://chromewebstore.google.com/detail/blueprint-viewer/hlnomclepllonnagpdgafgclohhpbhgo |
Beschrijving | Read .bp files in a GIT repository |
Bestandsgrootte | 73.82 KB |
Aantal Installaties | 108 |
Huidige Versie | 0.3 |
Laatst Bijgewerkt | 2023-01-06 |
Publicatiedatum | 2023-01-03 |
Ontwikkelaar | Miquel Camps Orteza |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://twitter.com/comandogdev |
Help Pagina-URL | https://twitter.com/comandogdev |
URL van de Privacybeleid Pagina | https://comandogdev.github.io/privacidad.html |
Ondersteunde Talen | 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" ] } ] } |