kaeru

A tool for creating anki flaschards from jisho.org results

Wat is kaeru?

kaeru is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "A tool for creating anki flaschards from jisho.org results".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie kaeru

Download kaeru-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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)                    

Basisinformatie over de Extensie

Naam kaeru kaeru
ID cmebgpgfghhacebdcblbelplgfoeiiib
Officiële URL https://chromewebstore.google.com/detail/kaeru/cmebgpgfghhacebdcblbelplgfoeiiib
Beschrijving A tool for creating anki flaschards from jisho.org results
Bestandsgrootte 787 KB
Aantal Installaties 97
Huidige Versie 0.1.0
Laatst Bijgewerkt 2016-12-30
Publicatiedatum 2016-12-29
Beoordeling 3.50/5 Totaal 4 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Help Pagina-URL https://mdboop.github.io/kaeru/
Ondersteunde Talen 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"
            ]
        }
    ]
}