Unreal Engine Api Usability Mod
This improves the useability of the Unreal Engine 4 API by adding useful links.
Wat is Unreal Engine Api Usability Mod?
Unreal Engine Api Usability Mod is een Chrome-extensie ontwikkeld door Matt Chapman, en de belangrijkste functie is "This improves the useability of the Unreal Engine 4 API by adding useful links.".
Extensie Screenshots
Download het CRX-bestand van de extensie Unreal Engine Api Usability Mod
Download Unreal Engine Api Usability Mod-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Unreal Engine Api Usability Mod |
ID | icnjogjkmpkbeokkblkgadigngeabkbg |
Officiële URL | https://chromewebstore.google.com/detail/unreal-engine-api-usabili/icnjogjkmpkbeokkblkgadigngeabkbg |
Beschrijving | This improves the useability of the Unreal Engine 4 API by adding useful links. |
Bestandsgrootte | 33.44 KB |
Aantal Installaties | 187 |
Huidige Versie | 1.4 |
Laatst Bijgewerkt | 2022-03-22 |
Publicatiedatum | 2015-11-27 |
Beoordeling | 4.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | Matt Chapman |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/Daekesh/UEApiUseabilityMod |
Ondersteunde Talen | 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\/*" ] } ] } |