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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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