League Exporter

Export item sets from Mobafire into League format

Wat is League Exporter?

League Exporter is een Chrome-extensie ontwikkeld door rosiecode95, en de belangrijkste functie is "Export item sets from Mobafire into League format".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie League Exporter

Download League Exporter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam League Exporter League Exporter
ID jegomhginfamlhhbjldkjhcnidghnogp
Officiële URL https://chromewebstore.google.com/detail/league-exporter/jegomhginfamlhhbjldkjhcnidghnogp
Beschrijving Export item sets from Mobafire into League format
Bestandsgrootte 19.84 KB
Aantal Installaties 28
Huidige Versie 0.1
Laatst Bijgewerkt 2019-08-06
Publicatiedatum 2019-08-05
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar rosiecode95
Betalingswijze free
Help Pagina-URL https://discord.gg/QkSfekz
Ondersteunde Talen 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"
    }
}