League Exporter
Export item sets from Mobafire into League format
Was ist League Exporter?
League Exporter ist eine Chrome-Erweiterung, die von rosiecode95 entwickelt wurde, und ihr Hauptmerkmal ist "Export item sets from Mobafire into League format".
Erweiterungsscreenshots
League Exporter-Erweiterungs-CRX-Datei herunterladen
Laden Sie League Exporter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | League Exporter |
ID | jegomhginfamlhhbjldkjhcnidghnogp |
Offizielle URL | https://chromewebstore.google.com/detail/league-exporter/jegomhginfamlhhbjldkjhcnidghnogp |
Beschreibung | Export item sets from Mobafire into League format |
Dateigröße | 19.84 KB |
Installationsanzahl | 28 |
Aktuelle Version | 0.1 |
Letztes Update | 2019-08-06 |
Veröffentlichungsdatum | 2019-08-05 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | rosiecode95 |
Zahlungsart | free |
Hilfeseite URL | https://discord.gg/QkSfekz |
Unterstützte Sprachen | 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" } } |