kaeru
A tool for creating anki flaschards from jisho.org results
Cos'è kaeru?
kaeru è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "A tool for creating anki flaschards from jisho.org results".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione kaeru
Scarica i file di estensione kaeru in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
How to use kaeru: 1. Search for a word on jisho.org 2. Open the extension, click make card 3. Optionally, you can keep searching for words and adding them to your queue 4. Open the extension and click ‘download’ 5. Go to your anki deck, then import the card (see notes) important: 1. Be sure to select “Field separated by: Space” (if it says something else, click it and enter a single space to update). 2. Check “Allow HTML in fields”. note: kaeru only supports basic card templates (no reverse cards yet)
Informazioni di Base sull'Estensione
Nome | kaeru |
ID | cmebgpgfghhacebdcblbelplgfoeiiib |
URL Ufficiale | https://chromewebstore.google.com/detail/kaeru/cmebgpgfghhacebdcblbelplgfoeiiib |
Descrizione | A tool for creating anki flaschards from jisho.org results |
Dimensione del File | 787 KB |
Conteggio Installazioni | 97 |
Versione Corrente | 0.1.0 |
Ultimo Aggiornamento | 2016-12-30 |
Data di Pubblicazione | 2016-12-29 |
Valutazione | 3.50/5 Totale 4 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://mdboop.github.io/kaeru/ |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "kaeru", "description": "A tool for creating anki flaschards from jisho.org results", "short_name": "kaeru", "version": "0.1.0", "browser_action": { "default_popup": "index.html" }, "permissions": [ "downloads", "storage", "tabs" ], "icons": { "16": "assets\/icon16.png", "48": "assets\/icon64.png", "128": "assets\/icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.jisho.org\/*" ], "js": [ "injector.js" ] } ] } |