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

Apa itu Unreal engine 4 API links?

Unreal engine 4 API links adalah ekstensi Chrome yang dikembangkan oleh mchernykh, dan fitur utamanya adalah "Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Unreal engine 4 API links

Unduh file ekstensi Unreal engine 4 API links dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Unreal engine 4 API links Unreal engine 4 API links
ID inkkdlckkmhbkmdegnjoaiglneahfinh
URL Resmi https://chromewebstore.google.com/detail/unreal-engine-4-api-links/inkkdlckkmhbkmdegnjoaiglneahfinh
Deskripsi Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options
Ukuran File 4.91 KB
Jumlah Instalasi 27
Versi Saat Ini 1.01
Terakhir Diperbarui 2018-12-23
Tanggal Publikasi 2018-12-22
Pengembang mchernykh
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}