Highlight Known Chinese Words

Highlights Chinese words that you already know! Keep track of your vocabulary!

Qu'est-ce que Highlight Known Chinese Words ?

Highlight Known Chinese Words est une extension Chrome développée par svecon, et sa fonction principale est "Highlights Chinese words that you already know! Keep track of your vocabulary!".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Highlight Known Chinese Words

Téléchargez les fichiers d'extension Highlight Known Chinese Words au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Highlight Known Chinese Words Highlight Known Chinese Words
ID gbpllapimjcpljegefoblbmjdaoahglm
URL Officiel https://chromewebstore.google.com/detail/highlight-known-chinese-w/gbpllapimjcpljegefoblbmjdaoahglm
Description Highlights Chinese words that you already know! Keep track of your vocabulary!
Taille du Fichier 840 KB
Nombre d'Installations 280
Version Actuelle 1.0.2
Dernière Mise à Jour 2016-11-26
Date de Publication 2016-11-26
Évaluation 5.00/5 Total 3 Évaluations
Développeur svecon
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}