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
What is Unreal engine 4 API links?
Unreal engine 4 API links is a Chrome extension developed by mchernykh, and its main feature is "Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options".
Extension Screenshots
Download Unreal engine 4 API links Extension CRX File
Download Unreal engine 4 API links extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Unreal engine 4 API links |
ID | inkkdlckkmhbkmdegnjoaiglneahfinh |
Official URL | 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 |
File Size | 4.91 KB |
Installation Count | 27 |
Current Version | 1.01 |
Last Updated | 2018-12-23 |
Publish Date | 2018-12-22 |
Developer | mchernykh |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } ] } |