Anki-leo - LinguaLeo dictionary export

Export your Lingualeo dictionary into CSV file compatible with Anki

Anki-leo - LinguaLeo dictionary export란 무엇입니까?

Anki-leo - LinguaLeo dictionary export은(는) troggy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Export your Lingualeo dictionary into CSV file compatible with Anki"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Anki-leo - LinguaLeo dictionary export 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to download your words from the LinguaLeo dictionary as CSV file. The file is ready for import to Anki

Works for all the wordsets and supports all the build-in Lingualeo filtering.

Downloaded for each word:
- translation
- link to the picture
- transcription
- example of use (context)
- link to mp3 file with pronunciation
- sets of words in which the word enters
- example of use (context) for cloze cards

Source code: https://github.com/troggy/anki-leo
Report errors: open github issue (preferrable) or ping me by email or on Telegram (https://t.me/troggy)                    

확장 프로그램 기본 정보

이름 Anki-leo - LinguaLeo dictionary export Anki-leo - LinguaLeo dictionary export
ID mpaohidlipnfnkbogpmanchjfjpdgcml
공식 URL https://chromewebstore.google.com/detail/anki-leo-lingualeo-dictio/mpaohidlipnfnkbogpmanchjfjpdgcml
설명 Export your Lingualeo dictionary into CSV file compatible with Anki
파일 크기 55.82 KB
설치 횟수 2,268
현재 버전 4.0.3
최근 업데이트 2023-03-10
출시 날짜 2019-11-27
평점 4.66/5 총 99 개의 평점
개발자 troggy
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://troggy.github.io/anki-leo/
도움말 페이지 URL http://troggy.github.io/anki-leo/
지원되는 언어 en,tr,es,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_manifest_name__",
    "short_name": "Anki-leo",
    "description": "__MSG_manifest_description__",
    "version": "4.0.3",
    "author": "Kosta Korenkov <[email protected]>",
    "default_locale": "en",
    "permissions": [
        "http:\/\/lingualeo.com\/",
        "https:\/\/lingualeo.com\/",
        "downloads",
        "background",
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icons\/16x16.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/lingualeo.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "leo-export.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "js\/index.js"
    ]
}