Chinese Personalized Colors

Color code individual Chinese characters

什麼是Chinese Personalized Colors?

Chinese Personalized Colors是由andrew.j.alexander開發的Chrome擴展程式,該擴展的主要功能是“Color code individual Chinese characters”。

擴展截圖

screenshot
screenshot

下載Chinese Personalized Colors擴展crx文件

下載Chinese Personalized Colors擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Chinese Personalized Colors Chinese Personalized Colors
ID gpgcbiaclhpaiknckdfdpbjkdgfkimmo
官方網址 https://chromewebstore.google.com/detail/chinese-personalized-colo/gpgcbiaclhpaiknckdfdpbjkdgfkimmo
簡介 Color code individual Chinese characters
檔案大小 4.63 MB
安裝次數 68
目前版本 0.0.0.3
更新時間 2017-12-11
上架時間 2017-12-10
評分 3.40/5 共 5 次評分
開發者 andrew.j.alexander
電子郵箱 [email protected]
付費類型 free
支援的語言 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\/*"
    ]
}