Babbel2Anki
Exports and syncs Babbel Review dictionary to Anki Deck. Required Anki Connect plugin.
Babbel2Anki là gì?
Babbel2Anki là một tiện ích mở rộng Chrome được phát triển bởi gordon.pav, và tính năng chính của nó là "Exports and syncs Babbel Review dictionary to Anki Deck. Required Anki Connect plugin.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Babbel2Anki
Tải xuống các tệp mở rộng Babbel2Anki dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Babbel2Anki |
ID | dnnognkhllcinkeimdhdchjggploankm |
URL Chính Thức | https://chromewebstore.google.com/detail/babbel2anki/dnnognkhllcinkeimdhdchjggploankm |
Mô tả | Exports and syncs Babbel Review dictionary to Anki Deck. Required Anki Connect plugin. |
Kích Thước Tệp | 91.18 KB |
Số Lần Cài Đặt | 136 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2022-07-29 |
Ngày Phát Hành | 2020-04-30 |
Đánh Giá | 3.75/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | gordon.pav |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/pavelgordon/babbel2anki-chrome-extension |
URL Trang Trợ Giúp | https://github.com/pavelgordon/babbel2anki-chrome-extension |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |