Unreal Engine Api Usability Mod

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

Что такое Unreal Engine Api Usability Mod?

Unreal Engine Api Usability Mod - это расширение Chrome, разработанное Matt Chapman, и его основная функция - "This improves the useability of the Unreal Engine 4 API by adding useful links.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Unreal Engine Api Usability Mod

Скачайте файлы расширений Unreal Engine Api Usability Mod в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Unreal Engine Api Usability Mod Unreal Engine Api Usability Mod
ID icnjogjkmpkbeokkblkgadigngeabkbg
Официальный URL https://chromewebstore.google.com/detail/unreal-engine-api-usabili/icnjogjkmpkbeokkblkgadigngeabkbg
Описание This improves the useability of the Unreal Engine 4 API by adding useful links.
Размер файла 33.44 KB
Количество установок 187
Текущая Версия 1.4
Последнее Обновление 2022-03-22
Дата публикации 2015-11-27
Рейтинг 4.00/5 Всего 5 оценок
Разработчик Matt Chapman
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Daekesh/UEApiUseabilityMod
Поддерживаемые языки 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\/*"
            ]
        }
    ]
}