League Exporter

Export item sets from Mobafire into League format

League Exporter là gì?

League Exporter là một tiện ích mở rộng Chrome được phát triển bởi rosiecode95, và tính năng chính của nó là "Export item sets from Mobafire into League format".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng League Exporter

Tải xuống các tệp mở rộng League Exporter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên League Exporter League Exporter
ID jegomhginfamlhhbjldkjhcnidghnogp
URL Chính Thức https://chromewebstore.google.com/detail/league-exporter/jegomhginfamlhhbjldkjhcnidghnogp
Mô tả Export item sets from Mobafire into League format
Kích Thước Tệp 19.84 KB
Số Lần Cài Đặt 28
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2019-08-06
Ngày Phát Hành 2019-08-05
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển rosiecode95
Loại Thanh Toán free
URL Trang Trợ Giúp https://discord.gg/QkSfekz
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}