Unreal Engine Api Usability Mod

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

Cos'è Unreal Engine Api Usability Mod?

Unreal Engine Api Usability Mod è un'estensione di Chrome sviluppata da Matt Chapman, e la sua funzione principale è "This improves the useability of the Unreal Engine 4 API by adding useful links.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Unreal Engine Api Usability Mod

Scarica i file di estensione Unreal Engine Api Usability Mod in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Unreal Engine Api Usability Mod Unreal Engine Api Usability Mod
ID icnjogjkmpkbeokkblkgadigngeabkbg
URL Ufficiale https://chromewebstore.google.com/detail/unreal-engine-api-usabili/icnjogjkmpkbeokkblkgadigngeabkbg
Descrizione This improves the useability of the Unreal Engine 4 API by adding useful links.
Dimensione del File 33.44 KB
Conteggio Installazioni 187
Versione Corrente 1.4
Ultimo Aggiornamento 2022-03-22
Data di Pubblicazione 2015-11-27
Valutazione 4.00/5 Totale 5 Valutazioni
Sviluppatore Matt Chapman
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Daekesh/UEApiUseabilityMod
Lingue Supportate 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\/*"
            ]
        }
    ]
}