Online Dictionary Helper
A translation popup tool to show online dictionary content (with anki support)
Online Dictionary Helper란 무엇입니까?
Online Dictionary Helper은(는) Huang Zhenyu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A translation popup tool to show online dictionary content (with anki support)"입니다.
확장 프로그램 스크린샷
Online Dictionary Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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__" } } } |