Ankinow
Ankinow is an extension to add words in a web page to Anki
Ankinowคืออะไร?
Ankinow เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ryota Arai และคุณลักษณะหลักของมันคือ "Ankinow is an extension to add words in a web page to Anki"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ankinow
ดาวน์โหลดไฟล์ส่วนขยาย Ankinow ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Ankinow is an extension to add words in a web page to Anki. GitHub: https://github.com/ryotarai/chrome-extension-ankinow # Steps to use 1. Install Anki app and AnkiConnect addon beforehand. 2. Keep Anki app running. 3. Install this extension. 4. Open this extension's option page and set deck name. 5. Visit supported site and click "Add to Anki" link. # Supported sites ## English dictionary - [Cambridge Dictionary](https://dictionary.cambridge.org/dictionary/) ## English-Japanese dictionary - [英辞郎 on the web](https://eow.alc.co.jp) - [英辞郎 on the web Pro / Pro Lite](https://eowf.alc.co.jp)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Ankinow |
ID | jomhaklahjhfpfdimldnnfpnapicgplk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ankinow/jomhaklahjhfpfdimldnnfpnapicgplk |
คำอธิบาย | Ankinow is an extension to add words in a web page to Anki |
ขนาดไฟล์ | 32.03 KB |
จำนวนการติดตั้ง | 107 |
เวอร์ชันปัจจุบัน | 0.0.3 |
อัปเดตครั้งล่าสุด | 2021-03-07 |
วันที่เผยแพร่ | 2021-03-01 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Ryota Arai |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Ankinow", "description": "Ankinow is an extension to add words in a web page to Anki", "version": "0.0.3", "action": { "default_icon": "icon16.png" }, "background": { "service_worker": "background.js" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage" ], "host_permissions": [ "http:\/\/127.0.0.1:8765\/" ], "content_scripts": [ { "matches": [ "https:\/\/eow.alc.co.jp\/*" ], "js": [ "contentScriptEow.js" ] }, { "matches": [ "https:\/\/eowf.alc.co.jp\/*" ], "js": [ "contentScriptEowf.js" ] }, { "matches": [ "https:\/\/dictionary.cambridge.org\/*" ], "js": [ "contentScriptCambridge.js" ] } ], "options_ui": { "page": "options.html" } } |