League Exporter

Export item sets from Mobafire into League format

League Exporter란 무엇입니까?

League Exporter은(는) rosiecode95에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Export item sets from Mobafire into League format"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

League Exporter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    }
}