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
Vad är Unreal engine 4 API links?
Unreal engine 4 API links är en Chrome-tillägg utvecklad av mchernykh, och dess huvudfunktion är "Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options".
Tilläggsskärmbilder
Ladda ner Unreal engine 4 API links-förlängningens CRX-fil
Ladda ner Unreal engine 4 API links-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Unreal engine 4 API links |
ID | inkkdlckkmhbkmdegnjoaiglneahfinh |
Officiell webbadress | https://chromewebstore.google.com/detail/unreal-engine-4-api-links/inkkdlckkmhbkmdegnjoaiglneahfinh |
Beskrivning | Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options |
Filstorlek | 4.91 KB |
Antal Installationer | 27 |
Aktuell Version | 1.01 |
Senast Uppdaterad | 2018-12-23 |
Publiceringsdatum | 2018-12-22 |
Utvecklare | mchernykh |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } ] } |