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
Was ist Unreal engine 4 API links?
Unreal engine 4 API links ist eine Chrome-Erweiterung, die von mchernykh entwickelt wurde, und ihr Hauptmerkmal ist "Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options".
Erweiterungsscreenshots
Unreal engine 4 API links-Erweiterungs-CRX-Datei herunterladen
Laden Sie Unreal engine 4 API links-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Unreal engine 4 API links |
ID | inkkdlckkmhbkmdegnjoaiglneahfinh |
Offizielle URL | https://chromewebstore.google.com/detail/unreal-engine-4-api-links/inkkdlckkmhbkmdegnjoaiglneahfinh |
Beschreibung | Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options |
Dateigröße | 4.91 KB |
Installationsanzahl | 27 |
Aktuelle Version | 1.01 |
Letztes Update | 2018-12-23 |
Veröffentlichungsdatum | 2018-12-22 |
Entwickler | mchernykh |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } ] } |