Highlight Known Chinese Words
Highlights Chinese words that you already know! Keep track of your vocabulary!
Highlight Known Chinese Words란 무엇입니까?
Highlight Known Chinese Words은(는) svecon에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlights Chinese words that you already know! Keep track of your vocabulary!"입니다.
확장 프로그램 스크린샷
Highlight Known Chinese Words 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Keep track of your Chinese vocabulary. This extension will highlight words that you already know on any webpage. If you know the word, it will be highlighted with green background. If you don't know the word, it will have red background. If you know only some of the characters of a word, they will be highlighted in blue. You can easily add words to your vocabulary in the settings. You can also select word which you want to add to vocabulary and press Shift+Alt+A. More keyboard shortcuts are explained in the options. Works great with Zhongwen Chinese Popup Dictionary extension.
확장 프로그램 기본 정보
이름 | Highlight Known Chinese Words |
ID | gbpllapimjcpljegefoblbmjdaoahglm |
공식 URL | https://chromewebstore.google.com/detail/highlight-known-chinese-w/gbpllapimjcpljegefoblbmjdaoahglm |
설명 | Highlights Chinese words that you already know! Keep track of your vocabulary! |
파일 크기 | 840 KB |
설치 횟수 | 280 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2016-11-26 |
출시 날짜 | 2016-11-26 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | svecon |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Highlight Known Chinese Words", "short_name": "Known Chinese", "version": "1.0.2", "description": "Highlights Chinese words that you already know! Keep track of your vocabulary!", "permissions": [ "storage" ], "browser_action": { "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "options_page": "options.html", "background": { "scripts": [ "background_script.js" ], "persistent": true }, "web_accessible_resources": [ "dictionaries\/cedict_ts.u8" ] } |