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
O que é Unreal engine 4 API links?
Unreal engine 4 API links é uma extensão do Chrome desenvolvida por mchernykh, e sua principal característica é "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 Tela da Extensão
Baixar o arquivo CRX da Extensão Unreal engine 4 API links
Baixe arquivos de extensão Unreal engine 4 API links no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Unreal engine 4 API links |
ID | inkkdlckkmhbkmdegnjoaiglneahfinh |
URL Oficial | https://chromewebstore.google.com/detail/unreal-engine-4-api-links/inkkdlckkmhbkmdegnjoaiglneahfinh |
Descrição | Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options |
Tamanho do Arquivo | 4.91 KB |
Contagem de Instalações | 27 |
Versão Atual | 1.01 |
Última Atualização | 2018-12-23 |
Data de Publicação | 2018-12-22 |
Desenvolvedor | mchernykh |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } ] } |