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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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\/*" ] } ] } |