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 |
Eメール | [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" ] } |