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".

Снимки экрана расширения

screenshot

Скачать файл 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 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"
        }
    ]
}