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