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是由Matt Chapman开发的Chrome扩展程序,该扩展的主要功能是“This improves the useability of the Unreal Engine 4 API by adding useful links.”。

扩展截图

screenshot

下载Unreal Engine Api Usability Mod扩展crx文件

下载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\/*"
            ]
        }
    ]
}