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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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\/*"
    ]
}