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
官方網址 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"
    ]
}