Blueprint Viewer

Read .bp files in a GIT repository

Cos'è Blueprint Viewer?

Blueprint Viewer è un'estensione di Chrome sviluppata da Miquel Camps Orteza, e la sua funzione principale è "Read .bp files in a GIT repository".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Blueprint Viewer

Scarica i file di estensione Blueprint Viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Blueprint Viewer Blueprint Viewer
ID hlnomclepllonnagpdgafgclohhpbhgo
URL Ufficiale https://chromewebstore.google.com/detail/blueprint-viewer/hlnomclepllonnagpdgafgclohhpbhgo
Descrizione Read .bp files in a GIT repository
Dimensione del File 73.82 KB
Conteggio Installazioni 108
Versione Corrente 0.3
Ultimo Aggiornamento 2023-01-06
Data di Pubblicazione 2023-01-03
Sviluppatore Miquel Camps Orteza
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://twitter.com/comandogdev
URL della Pagina di Aiuto https://twitter.com/comandogdev
URL della Pagina della Politica sulla Privacy https://comandogdev.github.io/privacidad.html
Lingue Supportate 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"
            ]
        }
    ]
}