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
Hvad er Unreal engine 4 API links?
Unreal engine 4 API links er en Chrome-udvidelse udviklet af mchernykh, og dens hovedfunktion er "Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options".
Udvidelsesskærmbilleder
Download Unreal engine 4 API links-udvidelses-CRX-fil
Download Unreal engine 4 API links-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Unreal engine 4 API links |
ID | inkkdlckkmhbkmdegnjoaiglneahfinh |
Officiel URL | https://chromewebstore.google.com/detail/unreal-engine-4-api-links/inkkdlckkmhbkmdegnjoaiglneahfinh |
Beskrivelse | Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options |
Filstørrelse | 4.91 KB |
Antal Installationer | 27 |
Nuværende Version | 1.01 |
Senest Opdateret | 2018-12-23 |
Udgivelsesdato | 2018-12-22 |
Udvikler | mchernykh |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } ] } |