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은(는) mchernykh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } ] } |