Unreal Engine Api Usability Mod

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

O que é Unreal Engine Api Usability Mod?

Unreal Engine Api Usability Mod é uma extensão do Chrome desenvolvida por Matt Chapman, e sua principal característica é "This improves the useability of the Unreal Engine 4 API by adding useful links.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Unreal Engine Api Usability Mod

Baixe arquivos de extensão Unreal Engine Api Usability Mod no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Unreal Engine Api Usability Mod Unreal Engine Api Usability Mod
ID icnjogjkmpkbeokkblkgadigngeabkbg
URL Oficial https://chromewebstore.google.com/detail/unreal-engine-api-usabili/icnjogjkmpkbeokkblkgadigngeabkbg
Descrição This improves the useability of the Unreal Engine 4 API by adding useful links.
Tamanho do Arquivo 33.44 KB
Contagem de Instalações 187
Versão Atual 1.4
Última Atualização 2022-03-22
Data de Publicação 2015-11-27
Classificação 4.00/5 Total de 5 Avaliações
Desenvolvedor Matt Chapman
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Daekesh/UEApiUseabilityMod
Idiomas Suportados 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\/*"
            ]
        }
    ]
}