kaeru

A tool for creating anki flaschards from jisho.org results

What is kaeru?

kaeru is a Chrome extension developed by Unknown, and its main feature is "A tool for creating anki flaschards from jisho.org results".

Extension Screenshots

screenshot

Download kaeru Extension CRX File

Download kaeru extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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)                    

Extension Basic Information

Name kaeru kaeru
ID cmebgpgfghhacebdcblbelplgfoeiiib
Official URL https://chromewebstore.google.com/detail/kaeru/cmebgpgfghhacebdcblbelplgfoeiiib
Description A tool for creating anki flaschards from jisho.org results
File Size 787 KB
Installation Count 97
Current Version 0.1.0
Last Updated 2016-12-30
Publish Date 2016-12-29
Rating 3.50/5 Total 4 Ratings
Developer Unknown
Payment Type free
Help Page URL https://mdboop.github.io/kaeru/
Supported Languages 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"
            ]
        }
    ]
}