Better Read

Better Read

Use Better Read to read more quickly and efficiently!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Better Read",
  "description": "Use Better Read to read more quickly and efficiently!",
  "author": "Devanshu Sen Pandey",
  "version": "0.0.0.2",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Better Read"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "contentStyles.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}