Online Dictionary Helper
A translation popup tool to show online dictionary content (with anki support)
Online Dictionary Helperคืออะไร?
Online Dictionary Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Huang Zhenyu และคุณลักษณะหลักของมันคือ "A translation popup tool to show online dictionary content (with anki support)"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Online Dictionary Helper
ดาวน์โหลดไฟล์ส่วนขยาย Online Dictionary Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
It's a tool to show online dictionary content and help make note in anki desktop (with ankiconnect installed). When users are reading web page online, they can move mouse cursor to the unkown word, press shift key, and then a pop up windows with that word definition will be displayed. It also can help make an anki note filling fields with word, definition and context (the surrounding sentence of selected word).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Online Dictionary Helper |
ID | lppjdajkacanlmpbbcdkccjkdbpllajb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/online-dictionary-helper/lppjdajkacanlmpbbcdkccjkdbpllajb |
คำอธิบาย | A translation popup tool to show online dictionary content (with anki support) |
ขนาดไฟล์ | 11.84 MB |
จำนวนการติดตั้ง | 27,773 |
เวอร์ชันปัจจุบัน | 0.9.5 |
อัปเดตครั้งล่าสุด | 2022-08-01 |
วันที่เผยแพร่ | 2020-03-10 |
คะแนน | 4.62/5 รวมทั้งหมด 203 คะแนน |
ผู้พัฒนา | Huang Zhenyu |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/ninja33/ODH |
URL หน้าช่วยเหลือ | https://github.com/ninja33/ODH |
ภาษาที่รองรับ | en,zh-CN,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "version": "0.9.5", "default_locale": "en", "description": "__MSG_appDesc__", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": { "19": "img\/icon19.png", "38": "img\/icon38.png" }, "default_popup": "bg\/popup.html" }, "author": "Zhenyu Huang", "background": { "page": "bg\/background.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "fg\/js\/api.js", "fg\/js\/popup.js", "fg\/js\/range.js", "fg\/js\/text.js", "fg\/js\/frontend.js" ], "css": [ "fg\/css\/client.css" ] } ], "minimum_chrome_version": "50.0.0.0", "options_ui": { "page": "bg\/options.html" }, "permissions": [ "webRequest", "webRequestBlocking", "https:\/\/ankiweb.net\/*", "https:\/\/ankiuser.net\/*", "storage" ], "sandbox": { "pages": [ "bg\/sandbox\/sandbox.html" ] }, "web_accessible_resources": [ "fg\/css\/frame.css", "fg\/css\/spell.css", "fg\/js\/frame.js", "fg\/js\/spell.js", "fg\/font\/spell-icons.ttf", "fg\/font\/spell-icons.woff", "fg\/img\/play.png", "fg\/img\/plus.png", "fg\/img\/cloud.png", "fg\/img\/load.gif", "fg\/img\/fail.png", "fg\/img\/good.png" ], "commands": { "enabled": { "suggested_key": { "default": "Alt+Q" }, "description": "__MSG_lblEnabled__" } } } |