kaeru
A tool for creating anki flaschards from jisho.org results
什么是kaeru?
kaeru是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“A tool for creating anki flaschards from jisho.org results”。
扩展截图
下载kaeru扩展crx文件
下载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" ] } ] } |