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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Export your Lingualeo dictionary into CSV file compatible with Anki"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Anki-leo - LinguaLeo dictionary export एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}