Chinese Personalized Colors

Chinese Personalized Colors

Color code individual Chinese characters

Merlin
Additional files are visible only to premium users

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:///*/*",
        "<all_urls>"
      ],
      "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": {
    "16": "cpc-16px.png",
    "48": "cpc-48px.png",
    "128": "cpc-128px.png"
  },
  "author": "Andrew Alexander",
  "web_accessible_resources": [
    "css/*",
    "js/*",
    "images/*"
  ]
}