League Exporter

Export item sets from Mobafire into League format

Qu'est-ce que League Exporter ?

League Exporter est une extension Chrome développée par rosiecode95, et sa fonction principale est "Export item sets from Mobafire into League format".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension League Exporter

Téléchargez les fichiers d'extension League Exporter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom League Exporter League Exporter
ID jegomhginfamlhhbjldkjhcnidghnogp
URL Officiel https://chromewebstore.google.com/detail/league-exporter/jegomhginfamlhhbjldkjhcnidghnogp
Description Export item sets from Mobafire into League format
Taille du Fichier 19.84 KB
Nombre d'Installations 28
Version Actuelle 0.1
Dernière Mise à Jour 2019-08-06
Date de Publication 2019-08-05
Évaluation 5.00/5 Total 1 Évaluations
Développeur rosiecode95
Type de Paiement free
URL de la Page d'Aide https://discord.gg/QkSfekz
Langues Prises en Charge 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"
    }
}