Unreal Engine Api Usability Mod
This improves the useability of the Unreal Engine 4 API by adding useful links.
¿Qué es Unreal Engine Api Usability Mod?
Unreal Engine Api Usability Mod es una extensión de Chrome desarrollada por Matt Chapman, y su función principal es "This improves the useability of the Unreal Engine 4 API by adding useful links.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Unreal Engine Api Usability Mod
Descarga archivos de extensión Unreal Engine Api Usability Mod en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Unreal Engine Api Usability Mod |
ID | icnjogjkmpkbeokkblkgadigngeabkbg |
URL Oficial | https://chromewebstore.google.com/detail/unreal-engine-api-usabili/icnjogjkmpkbeokkblkgadigngeabkbg |
Descripción | This improves the useability of the Unreal Engine 4 API by adding useful links. |
Tamaño del Archivo | 33.44 KB |
Cantidad de Instalaciones | 187 |
Versión Actual | 1.4 |
Última Actualización | 2022-03-22 |
Fecha de Publicación | 2015-11-27 |
Calificación | 4.00/5 Total de 5 Calificaciones |
Desarrollador | Matt Chapman |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/Daekesh/UEApiUseabilityMod |
Idiomas Soportados | 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\/*" ] } ] } |