Chinese Personalized Colors

Color code individual Chinese characters

ما هو Chinese Personalized Colors؟

Chinese Personalized Colors هو إضافة Chrome تم تطويرها بواسطة andrew.j.alexander، والميزة الرئيسية لها هي "Color code individual Chinese characters".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Chinese Personalized Colors

قم بتنزيل ملفات الامتداد Chinese Personalized Colors بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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\/*"
    ]
}