Speed Reader

Speed Reader

Highlight text and read it through a speed-reader widget

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Speed Reader",
  "description": "Highlight text and read it through a speed-reader widget",
  "version": "0.2",
  "browser_action": {
    "default_icon": "images/eye16.png",
    "default_title": "Yay Speed Reader"
  },
  "icons": {
    "16": "images/eye16.png",
    "48": "images/eye48.png",
    "128": "images/eye128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/jquery-ui-1.10.4.custom.min.css",
        "css/speed_reader.css"
      ],
      "js": [
        "js/jquery-2.1.0.min.js",
        "js/jquery-ui-1.10.4.custom.min.js",
        "js/speed_reader.js",
        "js/content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "notifications",
    "storage"
  ],
  "web_accessible_resources": [
    "css/images/*.png"
  ]
}