Babbel2Anki
Exports and syncs Babbel Review dictionary to Anki Deck. Required Anki Connect plugin.
Was ist Babbel2Anki?
Babbel2Anki ist eine Chrome-Erweiterung, die von gordon.pav entwickelt wurde, und ihr Hauptmerkmal ist "Exports and syncs Babbel Review dictionary to Anki Deck. Required Anki Connect plugin.".
Erweiterungsscreenshots
Babbel2Anki-Erweiterungs-CRX-Datei herunterladen
Laden Sie Babbel2Anki-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Babbel2Anki |
ID | dnnognkhllcinkeimdhdchjggploankm |
Offizielle URL | https://chromewebstore.google.com/detail/babbel2anki/dnnognkhllcinkeimdhdchjggploankm |
Beschreibung | Exports and syncs Babbel Review dictionary to Anki Deck. Required Anki Connect plugin. |
Dateigröße | 91.18 KB |
Installationsanzahl | 136 |
Aktuelle Version | 1.0.3 |
Letztes Update | 2022-07-29 |
Veröffentlichungsdatum | 2020-04-30 |
Bewertung | 3.75/5 Insgesamt 8 Bewertungen |
Entwickler | gordon.pav |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/pavelgordon/babbel2anki-chrome-extension |
Hilfeseite URL | https://github.com/pavelgordon/babbel2anki-chrome-extension |
Unterstützte Sprachen | 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" ] } |