Blueprint Viewer
Read .bp files in a GIT repository
Vad är Blueprint Viewer?
Blueprint Viewer är en Chrome-tillägg utvecklad av Miquel Camps Orteza, och dess huvudfunktion är "Read .bp files in a GIT repository".
Tilläggsskärmbilder
Ladda ner Blueprint Viewer-förlängningens CRX-fil
Ladda ner Blueprint Viewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | hlnomclepllonnagpdgafgclohhpbhgo |
| Officiell webbadress | https://chromewebstore.google.com/detail/blueprint-viewer/hlnomclepllonnagpdgafgclohhpbhgo |
| Beskrivning | Read .bp files in a GIT repository |
| Filstorlek | 73.82 KB |
| Antal Installationer | 108 |
| Aktuell Version | 0.3 |
| Senast Uppdaterad | 2023-01-06 |
| Publiceringsdatum | 2023-01-03 |
| Utvecklare | Miquel Camps Orteza |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://twitter.com/comandogdev |
| Hjälpsida URL | https://twitter.com/comandogdev |
| URL till Sekretesspolicy Sidan | https://comandogdev.github.io/privacidad.html |
| Stödda Språk | 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"
]
}
]
} | |