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" ] } ] } |