Unreal engine 4 API links

Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options

Unreal engine 4 API links là gì?

Unreal engine 4 API links là một tiện ích mở rộng Chrome được phát triển bởi mchernykh, và tính năng chính của nó là "Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Unreal engine 4 API links

Tải xuống các tệp mở rộng Unreal engine 4 API links dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Use this manual to avoid 404 errors in github: https://www.unrealengine.com/en-US/ue4-on-github

Cpp address is guessed so it may not exist.

Donate: https://paypal.me/mchernykh                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Unreal engine 4 API links Unreal engine 4 API links
ID inkkdlckkmhbkmdegnjoaiglneahfinh
URL Chính Thức https://chromewebstore.google.com/detail/unreal-engine-4-api-links/inkkdlckkmhbkmdegnjoaiglneahfinh
Mô tả Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options
Kích Thước Tệp 4.91 KB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 1.01
Cập Nhật Lần Cuối 2018-12-23
Ngày Phát Hành 2018-12-22
Nhà Phát Triển mchernykh
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unreal engine 4 API links",
    "version": "1.01",
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "description": "Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/api.unrealengine.com\/*"
            ],
            "js": [
                "convert_ue_links.js"
            ],
            "run_at": "document_end"
        }
    ]
}