TimeWise: Reading Time

TimeWise: Reading Time

Unlock the power of efficient reading with TimeWise, the Chrome extension that estimates reading time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TimeWise: Reading Time",
  "description": "Unlock the power of efficient reading with TimeWise, the Chrome extension that estimates reading time",
  "version": "0.1.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {},
  "options_page": "options/options.html",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "128": "icon128.png"
  }
}