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
ما هو Unreal engine 4 API links؟
Unreal engine 4 API links هو إضافة Chrome تم تطويرها بواسطة mchernykh، والميزة الرئيسية لها هي "Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Unreal engine 4 API links
قم بتنزيل ملفات الامتداد Unreal engine 4 API links بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
معلومات أساسية عن التمديد
الاسم | Unreal engine 4 API links |
ID | inkkdlckkmhbkmdegnjoaiglneahfinh |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/unreal-engine-4-api-links/inkkdlckkmhbkmdegnjoaiglneahfinh |
الوصف | Redirects the source links at the bottom of the unreal engine api website to Epic's github or the repo set in options |
حجم الملف | 4.91 KB |
عدد التثبيتات | 27 |
النسخة الحالية | 1.01 |
آخر تحديث | 2018-12-23 |
تاريخ النشر | 2018-12-22 |
المطور | mchernykh |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | 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" } ] } |