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

Co je Unreal engine 4 API links?

Unreal engine 4 API links je rozšíření Chrome vyvinuté mchernykh, a jeho hlavní funkcí je „Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Unreal engine 4 API links

Stáhněte si soubory rozšíření Unreal engine 4 API links ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Unreal engine 4 API links Unreal engine 4 API links
ID inkkdlckkmhbkmdegnjoaiglneahfinh
Oficiální URL https://chromewebstore.google.com/detail/unreal-engine-4-api-links/inkkdlckkmhbkmdegnjoaiglneahfinh
Popis Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options
Velikost souboru 4.91 KB
Počet instalací 27
Aktuální Verze 1.01
Poslední Aktualizace 2018-12-23
Datum Vydání 2018-12-22
Vývojář mchernykh
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}