NiceReader

NiceReader

NiceReader is designed for web reading.You can customize font, color, background, specify the elements to read, filiter ad elements.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "NiceReader",
  "version": "1.4",
  "description": "NiceReader is designed for web reading.You can customize font, color, background, specify the elements to read, filiter ad elements.",
  "homepage_url": "http://www.nicereader.net",
  "browser_action": {
    "default_icon": "images/nicereader.png",
    "default_title": "NiceReader",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/nicereader16.png",
    "24": "images/nicereader24.png",
    "64": "images/nicereader.png"
  },
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    "images/*"
  ],
  "permissions": [
    "fontSettings",
    "tabs"
  ],
  "offline_enabled": true
}