Read Timer

Read Timer

Read timer learns your read speed and tells you how long it will take to read an article online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Read Timer",
  "description": "Read timer learns your read speed and tells you how long it will take to read an article online.",
  "version": "1.0.1",
  "author": "Viraj Prabhu & Parameswaran D",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Read Timer",
    "default_icon": "hourglass.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "background",
    "storage"
  ]
}