Blueprint Viewer
Read .bp files in a GIT repository
Τι είναι το Blueprint Viewer;
Το Blueprint Viewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Miquel Camps Orteza, και η κύρια λειτουργία του είναι "Read .bp files in a GIT repository".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Blueprint Viewer
Λήψη αρχείων επέκτασης Blueprint Viewer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Blueprint Viewer |
ID | hlnomclepllonnagpdgafgclohhpbhgo |
Επίσημο URL | https://chromewebstore.google.com/detail/blueprint-viewer/hlnomclepllonnagpdgafgclohhpbhgo |
Περιγραφή | Read .bp files in a GIT repository |
Μέγεθος Αρχείου | 73.82 KB |
Αριθμός Εγκαταστάσεων | 108 |
Τρέχουσα Έκδοση | 0.3 |
Τελευταία Ενημέρωση | 2023-01-06 |
Ημερομηνία Δημοσίευσης | 2023-01-03 |
Προγραμματιστής | Miquel Camps Orteza |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://twitter.com/comandogdev |
Διεύθυνση URL της Σελίδας Βοήθειας | https://twitter.com/comandogdev |
URL της Σελίδας Πολιτικής Απορρήτου | https://comandogdev.github.io/privacidad.html |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |