League Exporter

Export item sets from Mobafire into League format

Что такое League Exporter?

League Exporter - это расширение Chrome, разработанное rosiecode95, и его основная функция - "Export item sets from Mobafire into League format".

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

screenshot
screenshot

Скачать файл CRX расширения League Exporter

Скачайте файлы расширений League Exporter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Export data sets from mobafire.com into League of Legends compatible format for import into the client

1. Open a build of choice
2. Click the potion icon and select the build
3. Press export
4. Open League client 
5. Click 'collection' -> 'items' -> 'import item sets'
6. Select paste coped set 
7. Paste output from League Exporter into the League input field

Join us on discord to report issues or just to hang out: https://discord.gg/QkSfekz                    

Основная информация о расширении

Название League Exporter League Exporter
ID jegomhginfamlhhbjldkjhcnidghnogp
Официальный URL https://chromewebstore.google.com/detail/league-exporter/jegomhginfamlhhbjldkjhcnidghnogp
Описание Export item sets from Mobafire into League format
Размер файла 19.84 KB
Количество установок 28
Текущая Версия 0.1
Последнее Обновление 2019-08-06
Дата публикации 2019-08-05
Рейтинг 5.00/5 Всего 1 оценок
Разработчик rosiecode95
Тип оплаты free
URL страницы помощи https://discord.gg/QkSfekz
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "League Exporter",
    "version": "0.1",
    "description": "Export item sets from Mobafire into League format",
    "author": "RosieCode95",
    "icons": {
        "32": "icon32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.mobafire.com\/league-of-legends\/build\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_title": "export me",
        "default_icon": "icon32.png"
    }
}