League Exporter

Export item sets from Mobafire into League format

League Exporter क्या है?

League Exporter rosiecode95 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Export item sets from Mobafire into League format"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में League Exporter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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