Ankimo - Quickly add Japanese words to Anki
Browser extension for sending Japanese words to Anki
Was ist Ankimo - Quickly add Japanese words to Anki?
Ankimo - Quickly add Japanese words to Anki ist eine Chrome-Erweiterung, die von David Mohl entwickelt wurde, und ihr Hauptmerkmal ist "Browser extension for sending Japanese words to Anki".
Erweiterungsscreenshots
Ankimo - Quickly add Japanese words to Anki-Erweiterungs-CRX-Datei herunterladen
Laden Sie Ankimo - Quickly add Japanese words to Anki-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
Ankimo is a companion extension to Anki (https://apps.ankiweb.net/) to instantly add Japanese words into a Anki deck. It currently runs on - tangorin.com To use Ankimo you have to install the AnkiConnect plugin: https://ankiweb.net/shared/info/2055492159 Once installed, make sure to go into the plugin options and set the field mapping to your Anki deck / card.
Grundlegende Informationen zur Erweiterung
Name | Ankimo - Quickly add Japanese words to Anki |
ID | mgcnkmjoaekofcajlgmakljhennlhjod |
Offizielle URL | https://chromewebstore.google.com/detail/ankimo-quickly-add-japane/mgcnkmjoaekofcajlgmakljhennlhjod |
Beschreibung | Browser extension for sending Japanese words to Anki |
Dateigröße | 475 KB |
Installationsanzahl | 21 |
Aktuelle Version | 0.4.0 |
Letztes Update | 2018-10-28 |
Veröffentlichungsdatum | 2018-10-28 |
Entwickler | David Mohl |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/dvcrn/ankimo |
Hilfeseite URL | https://github.com/dvcrn/ankimo/issues |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "short_name": "Ankimo", "name": "Ankimo - Quickly add Japanese words to Anki", "version": "0.4.0", "description": "Browser extension for sending Japanese words to Anki", "permissions": [ "storage" ], "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/tangorin.com\/*" ], "js": [ "worker.js" ] } ], "icons": { "128": "icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "options_ui": { "page": "options.html", "chrome_style": true } } |