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ファイルをダウンロード
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 |
Eメール | [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" } ] } |