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
官方網址 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"
    }
}