Unreal Engine Api Usability Mod
This improves the useability of the Unreal Engine 4 API by adding useful links.
什麼是Unreal Engine Api Usability Mod?
Unreal Engine Api Usability Mod是由Matt Chapman開發的Chrome擴展程式,該擴展的主要功能是“This improves the useability of the Unreal Engine 4 API by adding useful links.”。
擴展截圖
下載Unreal Engine Api Usability Mod擴展crx文件
下載Unreal Engine Api Usability Mod擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extensions makes the UE4 api easier to use by replacing some text with links to GitHub. It also adds page links to the different sections. The options for the extension allow you to set the base url for documentation.
擴展基本資訊
名稱 | Unreal Engine Api Usability Mod |
ID | icnjogjkmpkbeokkblkgadigngeabkbg |
官方網址 | https://chromewebstore.google.com/detail/unreal-engine-api-usabili/icnjogjkmpkbeokkblkgadigngeabkbg |
簡介 | This improves the useability of the Unreal Engine 4 API by adding useful links. |
檔案大小 | 33.44 KB |
安裝次數 | 187 |
目前版本 | 1.4 |
更新時間 | 2022-03-22 |
上架時間 | 2015-11-27 |
評分 | 4.00/5 共 5 次評分 |
開發者 | Matt Chapman |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/Daekesh/UEApiUseabilityMod |
支援的語言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Unreal Engine Api Usability Mod", "description": "This improves the useability of the Unreal Engine 4 API by adding useful links.", "version": "1.4", "content_scripts": [ { "matches": [ "https:\/\/docs.unrealengine.com\/*" ], "js": [ "myscript.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage" ], "options_ui": { "page": "options.html", "open_in_tab": false }, "web_accessible_resources": [ { "resources": [ "pagescript.js" ], "matches": [ "https:\/\/docs.unrealengine.com\/*" ] } ] } |