EasyReader

EasyReader

EasyReader can customize and improve the readability of long web articles

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "EasyReader",
  "version": "0.162",
  "description": "EasyReader can customize and improve the readability of long web articles",
  "options_page": "options.html",
  "permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "hotkeyListener.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "extension.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_title": "EasyReader"
  },
  "icons": {
    "128": "img/128-square.png"
  }
}