League Exporter
Export item sets from Mobafire into League format
Τι είναι το League Exporter;
Το League Exporter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rosiecode95, και η κύρια λειτουργία του είναι "Export item sets from Mobafire into League format".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης League Exporter
Λήψη αρχείων επέκτασης League Exporter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 |
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" } } |