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文件
下载Highlight Known Chinese Words扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } |