Highlight Known Chinese Words
Highlights Chinese words that you already know! Keep track of your vocabulary!
¿Qué es Highlight Known Chinese Words?
Highlight Known Chinese Words es una extensión de Chrome desarrollada por svecon, y su función principal es "Highlights Chinese words that you already know! Keep track of your vocabulary!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Highlight Known Chinese Words
Descarga archivos de extensión Highlight Known Chinese Words en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Highlight Known Chinese Words |
ID | gbpllapimjcpljegefoblbmjdaoahglm |
URL Oficial | https://chromewebstore.google.com/detail/highlight-known-chinese-w/gbpllapimjcpljegefoblbmjdaoahglm |
Descripción | Highlights Chinese words that you already know! Keep track of your vocabulary! |
Tamaño del Archivo | 840 KB |
Cantidad de Instalaciones | 280 |
Versión Actual | 1.0.2 |
Última Actualización | 2016-11-26 |
Fecha de Publicación | 2016-11-26 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | svecon |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |