Highlight Known Chinese Words
Highlights Chinese words that you already know! Keep track of your vocabulary!
Was ist Highlight Known Chinese Words?
Highlight Known Chinese Words ist eine Chrome-Erweiterung, die von svecon entwickelt wurde, und ihr Hauptmerkmal ist "Highlights Chinese words that you already know! Keep track of your vocabulary!".
Erweiterungsscreenshots
Highlight Known Chinese Words-Erweiterungs-CRX-Datei herunterladen
Laden Sie Highlight Known Chinese Words-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Highlight Known Chinese Words |
ID | gbpllapimjcpljegefoblbmjdaoahglm |
Offizielle URL | https://chromewebstore.google.com/detail/highlight-known-chinese-w/gbpllapimjcpljegefoblbmjdaoahglm |
Beschreibung | Highlights Chinese words that you already know! Keep track of your vocabulary! |
Dateigröße | 840 KB |
Installationsanzahl | 280 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2016-11-26 |
Veröffentlichungsdatum | 2016-11-26 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | svecon |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |