Unreal Engine Api Usability Mod

This improves the useability of the Unreal Engine 4 API by adding useful links.

Was ist Unreal Engine Api Usability Mod?

Unreal Engine Api Usability Mod ist eine Chrome-Erweiterung, die von Matt Chapman entwickelt wurde, und ihr Hauptmerkmal ist "This improves the useability of the Unreal Engine 4 API by adding useful links.".

Erweiterungsscreenshots

screenshot

Unreal Engine Api Usability Mod-Erweiterungs-CRX-Datei herunterladen

Laden Sie Unreal Engine Api Usability Mod-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Unreal Engine Api Usability Mod Unreal Engine Api Usability Mod
ID icnjogjkmpkbeokkblkgadigngeabkbg
Offizielle URL https://chromewebstore.google.com/detail/unreal-engine-api-usabili/icnjogjkmpkbeokkblkgadigngeabkbg
Beschreibung This improves the useability of the Unreal Engine 4 API by adding useful links.
Dateigröße 33.44 KB
Installationsanzahl 187
Aktuelle Version 1.4
Letztes Update 2022-03-22
Veröffentlichungsdatum 2015-11-27
Bewertung 4.00/5 Insgesamt 5 Bewertungen
Entwickler Matt Chapman
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Daekesh/UEApiUseabilityMod
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}