Babbel2Anki
Exports and syncs Babbel Review dictionary to Anki Deck. Required Anki Connect plugin.
Babbel2Anki란 무엇입니까?
Babbel2Anki은(는) gordon.pav에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Exports and syncs Babbel Review dictionary to Anki Deck. Required Anki Connect plugin."입니다.
확장 프로그램 스크린샷
Babbel2Anki 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Chrome Extension which imports and syncs Babbel vocabulary to Anki Desktop. Supports customising deck and card template names for syncing, tags. Auto-syncing is WIP, stay tuned :) Instructions on how to connect to Anki: https://github.com/pavelgordon/babbel2anki-chrome-extension
확장 프로그램 기본 정보
이름 | Babbel2Anki |
ID | dnnognkhllcinkeimdhdchjggploankm |
공식 URL | https://chromewebstore.google.com/detail/babbel2anki/dnnognkhllcinkeimdhdchjggploankm |
설명 | Exports and syncs Babbel Review dictionary to Anki Deck. Required Anki Connect plugin. |
파일 크기 | 91.18 KB |
설치 횟수 | 136 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2022-07-29 |
출시 날짜 | 2020-04-30 |
평점 | 3.75/5 총 8 개의 평점 |
개발자 | gordon.pav |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/pavelgordon/babbel2anki-chrome-extension |
도움말 페이지 URL | https://github.com/pavelgordon/babbel2anki-chrome-extension |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.0.3", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon.png", "128": "images\/icon.png" }, "default_locale": "en", "background": { "scripts": [ "libs\/polyfill.min.js", "scripts\/background.js", "scripts\/hot-reload.js" ] }, "permissions": [ "activeTab", "http:\/\/my.babbel.com\/*", "https:\/\/my.babbel.com\/*", "background", "notifications", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/my.babbel.com\/*", "http:\/\/my.babbel.com\/*" ], "js": [ "scripts\/contentscript.js" ], "css": [ "styles\/main.css" ], "run_at": "document_end", "all_frames": false } ], "omnibox": { "keyword": "OMNIBOX-KEYWORD" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "popup.html", "default_title": "Exports and syncs Babbel Dictionary with Anki" }, "web_accessible_resources": [ "images\/icon-48.png" ] } |