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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matt Chapman และคุณลักษณะหลักของมันคือ "This improves the useability of the Unreal Engine 4 API by adding useful links."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Unreal Engine Api Usability Mod
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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\/*" ] } ] } |