Speed Reader

Speed Reader

Improve your reading speed in a blink of an eye

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Speed Reader",
  "version": "1.8.1",
  "description": "Improve your reading speed in a blink of an eye",
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "browser_action": {
    "default_title": "Speed Reader",
    "default_popup": "popup.html",
    "default_icon": "logo.png"
  },
  "permissions": [
    "storage",
    "input",
    "tabs",
    "http://*/*",
    "https://*/*",
    "https://*.google.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "selection.js"
      ],
      "css": [
        "mystyle.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "manifest_version": 2
}