Blueprint Viewer

Read .bp files in a GIT repository

Co to jest Blueprint Viewer?

Blueprint Viewer to rozszerzenie Chrome opracowane przez Miquel Camps Orteza, a jego główną funkcją jest „Read .bp files in a GIT repository”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Blueprint Viewer

Pobierz pliki rozszerzeń Blueprint Viewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Blueprint Viewer Blueprint Viewer
ID hlnomclepllonnagpdgafgclohhpbhgo
Oficjalny URL https://chromewebstore.google.com/detail/blueprint-viewer/hlnomclepllonnagpdgafgclohhpbhgo
Opis Read .bp files in a GIT repository
Rozmiar pliku 73.82 KB
Liczba instalacji 108
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2023-01-06
Data Publikacji 2023-01-03
Deweloper Miquel Camps Orteza
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://twitter.com/comandogdev
Adres URL Strony Pomocy https://twitter.com/comandogdev
Adres URL Strony Polityki Prywatności https://comandogdev.github.io/privacidad.html
Obsługiwane Języki 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"
            ]
        }
    ]
}