Unreal Engine Api Usability Mod
This improves the useability of the Unreal Engine 4 API by adding useful links.
Qu'est-ce que Unreal Engine Api Usability Mod ?
Unreal Engine Api Usability Mod est une extension Chrome développée par Matt Chapman, et sa fonction principale est "This improves the useability of the Unreal Engine 4 API by adding useful links.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Unreal Engine Api Usability Mod
Téléchargez les fichiers d'extension Unreal Engine Api Usability Mod au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Unreal Engine Api Usability Mod |
ID | icnjogjkmpkbeokkblkgadigngeabkbg |
URL Officiel | https://chromewebstore.google.com/detail/unreal-engine-api-usabili/icnjogjkmpkbeokkblkgadigngeabkbg |
Description | This improves the useability of the Unreal Engine 4 API by adding useful links. |
Taille du Fichier | 33.44 KB |
Nombre d'Installations | 187 |
Version Actuelle | 1.4 |
Dernière Mise à Jour | 2022-03-22 |
Date de Publication | 2015-11-27 |
Évaluation | 4.00/5 Total 5 Évaluations |
Développeur | Matt Chapman |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Daekesh/UEApiUseabilityMod |
Langues Prises en Charge | 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\/*" ] } ] } |