Duolingo2Anki

Exports and syncs Duolingo dictionary to Anki Deck. Required Anki Connect plugin.

Duolingo2Anki란 무엇입니까?

Duolingo2Anki은(는) gordon.pav에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Exports and syncs Duolingo dictionary to Anki Deck. Required Anki Connect plugin."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Duolingo2Anki 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    ]
}