neat-reader-code-highlight

neat-reader-code-highlight

code highlight Extensions for https://www.neat-reader.cn

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "neat-reader-code-highlight",
  "version": "0.0.3",
  "description": "code highlight Extensions for https://www.neat-reader.cn",
  "browser_action": {
    "default_icon": {
      "16": "static/images/logo-16x16.png",
      "32": "static/images/logo-32x32.png",
      "48": "static/images/logo-48x48.png",
      "128": "static/images/logo-128x128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.neat-reader.cn/*",
        "http://*.neat-reader.cn/*"
      ],
      "run_at": "document_end",
      "js": [
        "static/content-script/initHighlight.js"
      ],
      "css": [
        "static/content-script/theme.css"
      ]
    }
  ],
  "icons": {
    "16": "static/images/logo-16x16.png",
    "32": "static/images/logo-32x32.png",
    "48": "static/images/logo-48x48.png",
    "128": "static/images/logo-128x128.png"
  },
  "manifest_version": 2
}