creadr

creadr

creadr is a tool designed to help Chinese learners with reading web content

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "creadr",
  "description": "creadr is a tool designed to help Chinese learners with reading web content",
  "version": "0.2.1",
  "permissions": [
    "activeTab",
    "https://www.readability.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "html": [
        "content.html"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "mini-pinyin.js",
        "lodash.min.js",
        "jquery-3.0.0.js",
        "readability-cn.js",
        "config.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Left click to turn on Chinese reader mode",
    "default_icon": "icon_v4.png"
  },
  "manifest_version": 2
}