League Exporter

Export item sets from Mobafire into League format

什么是League Exporter?

League Exporter是由rosiecode95开发的Chrome扩展程序,该扩展的主要功能是“Export item sets from Mobafire into League format”。

扩展截图

screenshot
screenshot

下载League Exporter扩展crx文件

下载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"
    }
}