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ファイルをダウンロード

Anki-leo - LinguaLeo dictionary export拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}