Fast Reader

Fast Reader

Speed up your reading!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fast Reader",
  "description": "Speed up your reading!",
  "version": "1.1",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon16.png",
    "default_popup": "popup.html",
    "default_title": "Fast Reader - speed up your reading!"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "file://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}