kaeru
A tool for creating anki flaschards from jisho.org results
Что такое kaeru?
kaeru - это расширение Chrome, разработанное Unknown, и его основная функция - "A tool for creating anki flaschards from jisho.org results".
Снимки экрана расширения
Скачать файл CRX расширения kaeru
Скачайте файлы расширений kaeru в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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)
Основная информация о расширении
Название | kaeru |
ID | cmebgpgfghhacebdcblbelplgfoeiiib |
Официальный URL | https://chromewebstore.google.com/detail/kaeru/cmebgpgfghhacebdcblbelplgfoeiiib |
Описание | A tool for creating anki flaschards from jisho.org results |
Размер файла | 787 KB |
Количество установок | 97 |
Текущая Версия | 0.1.0 |
Последнее Обновление | 2016-12-30 |
Дата публикации | 2016-12-29 |
Рейтинг | 3.50/5 Всего 4 оценок |
Разработчик | Unknown |
Тип оплаты | free |
URL страницы помощи | https://mdboop.github.io/kaeru/ |
Поддерживаемые языки | 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" ] } ] } |