Blueprint Viewer
Read .bp files in a GIT repository
Was ist Blueprint Viewer?
Blueprint Viewer ist eine Chrome-Erweiterung, die von Miquel Camps Orteza entwickelt wurde, und ihr Hauptmerkmal ist "Read .bp files in a GIT repository".
Erweiterungsscreenshots
Blueprint Viewer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Blueprint Viewer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hlnomclepllonnagpdgafgclohhpbhgo |
| Offizielle URL | https://chromewebstore.google.com/detail/blueprint-viewer/hlnomclepllonnagpdgafgclohhpbhgo |
| Beschreibung | Read .bp files in a GIT repository |
| Dateigröße | 73.82 KB |
| Installationsanzahl | 108 |
| Aktuelle Version | 0.3 |
| Letztes Update | 2023-01-06 |
| Veröffentlichungsdatum | 2023-01-03 |
| Entwickler | Miquel Camps Orteza |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://twitter.com/comandogdev |
| Hilfeseite URL | https://twitter.com/comandogdev |
| URL der Datenschutzrichtlinien-Seite | https://comandogdev.github.io/privacidad.html |
| Unterstützte Sprachen | 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"
]
}
]
} | |