League Exporter

Export item sets from Mobafire into League format

Cos'è League Exporter?

League Exporter è un'estensione di Chrome sviluppata da rosiecode95, e la sua funzione principale è "Export item sets from Mobafire into League format".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione League Exporter

Scarica i file di estensione League Exporter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome League Exporter League Exporter
ID jegomhginfamlhhbjldkjhcnidghnogp
URL Ufficiale https://chromewebstore.google.com/detail/league-exporter/jegomhginfamlhhbjldkjhcnidghnogp
Descrizione Export item sets from Mobafire into League format
Dimensione del File 19.84 KB
Conteggio Installazioni 28
Versione Corrente 0.1
Ultimo Aggiornamento 2019-08-06
Data di Pubblicazione 2019-08-05
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore rosiecode95
Tipo di Pagamento free
URL della Pagina di Aiuto https://discord.gg/QkSfekz
Lingue Supportate 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"
    }
}