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
Eメール [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\/*"
            ]
        }
    ]
}