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ファイルをダウンロード
Babbel2Anki拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } |