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é es Unreal engine 4 API links?
Unreal engine 4 API links es una extensión de Chrome desarrollada por mchernykh, y su función principal es "Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Unreal engine 4 API links
Descarga archivos de extensión Unreal engine 4 API links en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Unreal engine 4 API links |
ID | inkkdlckkmhbkmdegnjoaiglneahfinh |
URL Oficial | https://chromewebstore.google.com/detail/unreal-engine-4-api-links/inkkdlckkmhbkmdegnjoaiglneahfinh |
Descripción | Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options |
Tamaño del Archivo | 4.91 KB |
Cantidad de Instalaciones | 27 |
Versión Actual | 1.01 |
Última Actualización | 2018-12-23 |
Fecha de Publicación | 2018-12-22 |
Desarrollador | mchernykh |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } ] } |