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
Co to jest Unreal engine 4 API links?
Unreal engine 4 API links to rozszerzenie Chrome opracowane przez mchernykh, a jego główną funkcją jest „Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Unreal engine 4 API links
Pobierz pliki rozszerzeń Unreal engine 4 API links w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Unreal engine 4 API links |
ID | inkkdlckkmhbkmdegnjoaiglneahfinh |
Oficjalny URL | https://chromewebstore.google.com/detail/unreal-engine-4-api-links/inkkdlckkmhbkmdegnjoaiglneahfinh |
Opis | Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options |
Rozmiar pliku | 4.91 KB |
Liczba instalacji | 27 |
Aktualna Wersja | 1.01 |
Ostatnia Aktualizacja | 2018-12-23 |
Data Publikacji | 2018-12-22 |
Deweloper | mchernykh |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } ] } |