Chinese Personalized Colors

Color code individual Chinese characters

Vad är Chinese Personalized Colors?

Chinese Personalized Colors är en Chrome-tillägg utvecklad av andrew.j.alexander, och dess huvudfunktion är "Color code individual Chinese characters".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Chinese Personalized Colors-förlängningens CRX-fil

Ladda ner Chinese Personalized Colors-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Chinese Personalized Colors - A Tone Colorizer

Version 0.0.0.3

NOTE: This Chrome extension is in beta. There may be bugs and will likely be performance degradation.

Copyright (C) 2017 Andrew Alexander

Colorizes Chinese characters based on tone.

Currently this extension is very new and relatively untested. Site load times are increased and there are likely to be some bugs.

- Supports over 5000 characters
- Includes a recent version of the widely used CEDICT Chinese English dictionary.                    

Grundläggande Information om Tillägg

Namn Chinese Personalized Colors Chinese Personalized Colors
ID gpgcbiaclhpaiknckdfdpbjkdgfkimmo
Officiell webbadress https://chromewebstore.google.com/detail/chinese-personalized-colo/gpgcbiaclhpaiknckdfdpbjkdgfkimmo
Beskrivning Color code individual Chinese characters
Filstorlek 4.63 MB
Antal Installationer 68
Aktuell Version 0.0.0.3
Senast Uppdaterad 2017-12-11
Publiceringsdatum 2017-12-10
Betyg 3.40/5 Totalt 5 Betyg
Utvecklare andrew.j.alexander
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chinese Personalized Colors",
    "version": "0.0.0.3",
    "short_name": "CPC",
    "manifest_version": 2,
    "description": "Color code individual Chinese characters",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*",
                ""
            ],
            "css": [
                "mystyles.css"
            ],
            "js": [
                "jquery-1.7.2.min.js",
                "highlight_class_version.js",
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "http:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "dict.js",
            "main.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "CPC"
    },
    "icons": {
        "128": "cpc-128px.png",
        "48": "cpc-48px.png",
        "16": "cpc-16px.png"
    },
    "author": "Andrew Alexander",
    "web_accessible_resources": [
        "css\/*",
        "js\/*",
        "images\/*"
    ]
}