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
公式URL 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
Eメール [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\/*"
    ]
}