Blueprint Viewer

Read .bp files in a GIT repository

Hvad er Blueprint Viewer?

Blueprint Viewer er en Chrome-udvidelse udviklet af Miquel Camps Orteza, og dens hovedfunktion er "Read .bp files in a GIT repository".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Blueprint Viewer-udvidelses-CRX-fil

Download Blueprint Viewer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Blueprint Viewer Blueprint Viewer
ID hlnomclepllonnagpdgafgclohhpbhgo
Officiel URL https://chromewebstore.google.com/detail/blueprint-viewer/hlnomclepllonnagpdgafgclohhpbhgo
Beskrivelse Read .bp files in a GIT repository
Filstørrelse 73.82 KB
Antal Installationer 108
Nuværende Version 0.3
Senest Opdateret 2023-01-06
Udgivelsesdato 2023-01-03
Udvikler Miquel Camps Orteza
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://twitter.com/comandogdev
Hjælpeside-URL https://twitter.com/comandogdev
URL til Fortrolighedspolitik Side https://comandogdev.github.io/privacidad.html
Understøttede Sprog 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"
            ]
        }
    ]
}