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

Wat is Unreal engine 4 API links?

Unreal engine 4 API links is een Chrome-extensie ontwikkeld door mchernykh, en de belangrijkste functie is "Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Unreal engine 4 API links

Download Unreal engine 4 API links-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Unreal engine 4 API links Unreal engine 4 API links
ID inkkdlckkmhbkmdegnjoaiglneahfinh
Officiële URL https://chromewebstore.google.com/detail/unreal-engine-4-api-links/inkkdlckkmhbkmdegnjoaiglneahfinh
Beschrijving Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options
Bestandsgrootte 4.91 KB
Aantal Installaties 27
Huidige Versie 1.01
Laatst Bijgewerkt 2018-12-23
Publicatiedatum 2018-12-22
Ontwikkelaar mchernykh
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}