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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย troggy และคุณลักษณะหลักของมันคือ "Export your Lingualeo dictionary into CSV file compatible with Anki"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Anki-leo - LinguaLeo dictionary export

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}