Duolingo2Anki
Exports and syncs Duolingo dictionary to Anki Deck. Required Anki Connect plugin.
Duolingo2Ankiคืออะไร?
Duolingo2Anki เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gordon.pav และคุณลักษณะหลักของมันคือ "Exports and syncs Duolingo dictionary to Anki Deck. Required Anki Connect plugin."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Duolingo2Anki
ดาวน์โหลดไฟล์ส่วนขยาย Duolingo2Anki ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Exports learned vocabulary of chosen language on https://www.duolingo.com/ to Anki, including original words, translations and audio(now includes images as well! although, only if such image exists...) Supports multiple decks, customising resulting deck name, and custom tags to such cards. Export might take a while on bigger collections(~40 sec on each 100 words, due to both Duolingo and Anki limitations), so please be patient :) If owl is spinning, then it's working. I am working on improvements, so please don't hesitate to contact me in case you have any issues. For more details about how to connect to Anki please follow https://github.com/pavelgordon/duolingo2anki-chrome-extension.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Duolingo2Anki |
ID | acheapdlofocdffphhiflflondmpfobm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/duolingo2anki/acheapdlofocdffphhiflflondmpfobm |
คำอธิบาย | Exports and syncs Duolingo dictionary to Anki Deck. Required Anki Connect plugin. |
ขนาดไฟล์ | 124 KB |
จำนวนการติดตั้ง | 213 |
เวอร์ชันปัจจุบัน | 0.1.1 |
อัปเดตครั้งล่าสุด | 2022-05-23 |
วันที่เผยแพร่ | 2020-12-30 |
คะแนน | 2.33/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | gordon.pav |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/pavelgordon/duolingo2anki-chrome-extension |
URL หน้าช่วยเหลือ | https://github.com/pavelgordon/duolingo2anki-chrome-extension |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.1.1", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/owl.png", "128": "images\/owl.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js", "scripts\/anki.js" ] }, "permissions": [ "activeTab", "https:\/\/www.duolingo.com\/words", "https:\/\/www.duolingo.com\/vocabulary\/overview*", "https:\/\/duolingo.com\/vocabulary\/overview*", "background", "notifications", "storage", "webRequest", "webRequestBlocking", "*:\/\/duolingo.com\/", "*:\/\/www.duolingo.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.duolingo.com\/words", "https:\/\/www.duolingo.com\/vocabulary\/overview*", "https:\/\/duolingo.com\/vocabulary\/overview*", "http:\/\/www.duolingo.com\/words*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "omnibox": { "keyword": "OMNIBOX-KEYWORD" }, "browser_action": { "default_icon": "images\/owl.png", "default_popup": "popup.html", "default_title": "Exports and syncs Duolingo Vocabulary with Anki" }, "web_accessible_resources": [ "images\/icon-48.png" ] } |