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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } ] } |