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