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 扩展基本信息
| 名称 | |
| 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"
}
]
} | |