Unreal Engine Api Usability Mod
This improves the useability of the Unreal Engine 4 API by adding useful links.
Unreal Engine Api Usability Mod là gì?
Unreal Engine Api Usability Mod là một tiện ích mở rộng Chrome được phát triển bởi Matt Chapman, và tính năng chính của nó là "This improves the useability of the Unreal Engine 4 API by adding useful links.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Unreal Engine Api Usability Mod
Tải xuống các tệp mở rộng Unreal Engine Api Usability Mod dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Unreal Engine Api Usability Mod |
ID | icnjogjkmpkbeokkblkgadigngeabkbg |
URL Chính Thức | https://chromewebstore.google.com/detail/unreal-engine-api-usabili/icnjogjkmpkbeokkblkgadigngeabkbg |
Mô tả | This improves the useability of the Unreal Engine 4 API by adding useful links. |
Kích Thước Tệp | 33.44 KB |
Số Lần Cài Đặt | 187 |
Phiên Bản Hiện Tại | 1.4 |
Cập Nhật Lần Cuối | 2022-03-22 |
Ngày Phát Hành | 2015-11-27 |
Đánh Giá | 4.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | Matt Chapman |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Daekesh/UEApiUseabilityMod |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |