League Exporter
Export item sets from Mobafire into League format
O que é League Exporter?
League Exporter é uma extensão do Chrome desenvolvida por rosiecode95, e sua principal característica é "Export item sets from Mobafire into League format".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão League Exporter
Baixe arquivos de extensão League Exporter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | League Exporter |
ID | jegomhginfamlhhbjldkjhcnidghnogp |
URL Oficial | https://chromewebstore.google.com/detail/league-exporter/jegomhginfamlhhbjldkjhcnidghnogp |
Descrição | Export item sets from Mobafire into League format |
Tamanho do Arquivo | 19.84 KB |
Contagem de Instalações | 28 |
Versão Atual | 0.1 |
Última Atualização | 2019-08-06 |
Data de Publicação | 2019-08-05 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | rosiecode95 |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://discord.gg/QkSfekz |
Idiomas Suportados | 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" } } |