Blueprint Viewer
Read .bp files in a GIT repository
什麼是Blueprint Viewer?
Blueprint Viewer是由Miquel Camps Orteza開發的Chrome擴展程式,該擴展的主要功能是“Read .bp files in a GIT repository”。
擴展截圖
下載Blueprint Viewer擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | hlnomclepllonnagpdgafgclohhpbhgo |
| 官方網址 | 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"
]
}
]
} | |