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

Qu'est-ce que Unreal engine 4 API links ?

Unreal engine 4 API links est une extension Chrome développée par mchernykh, et sa fonction principale est "Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Unreal engine 4 API links

Téléchargez les fichiers d'extension Unreal engine 4 API links au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Unreal engine 4 API links Unreal engine 4 API links
ID inkkdlckkmhbkmdegnjoaiglneahfinh
URL Officiel https://chromewebstore.google.com/detail/unreal-engine-4-api-links/inkkdlckkmhbkmdegnjoaiglneahfinh
Description Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options
Taille du Fichier 4.91 KB
Nombre d'Installations 27
Version Actuelle 1.01
Dernière Mise à Jour 2018-12-23
Date de Publication 2018-12-22
Développeur mchernykh
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}