Blueprint Viewer

Read .bp files in a GIT repository

What is Blueprint Viewer?

Blueprint Viewer is a Chrome extension developed by Miquel Camps Orteza, and its main feature is "Read .bp files in a GIT repository".

Extension Screenshots

screenshot
screenshot
screenshot

Download Blueprint Viewer Extension CRX File

Download Blueprint Viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Blueprint Viewer Blueprint Viewer
ID hlnomclepllonnagpdgafgclohhpbhgo
Official URL https://chromewebstore.google.com/detail/blueprint-viewer/hlnomclepllonnagpdgafgclohhpbhgo
Description Read .bp files in a GIT repository
File Size 73.82 KB
Installation Count 108
Current Version 0.3
Last Updated 2023-01-06
Publish Date 2023-01-03
Developer Miquel Camps Orteza
Email [email protected]
Payment Type free
Extension Website https://twitter.com/comandogdev
Help Page URL https://twitter.com/comandogdev
Privacy Policy Page URL https://comandogdev.github.io/privacidad.html
Supported Languages 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"
            ]
        }
    ]
}