Faster Reading - Focused

Faster Reading - Focused

Faster Better and More Focused Reading

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {},
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "toggleAutouse": {
      "suggested_key": {
        "default": "Ctrl+B",
        "mac": "Command+B"
      },
      "description": "Turn faster reading autouse on or off."
    },
    "toggleFontColor": {
      "suggested_key": {
        "default": "Alt+C",
        "mac": "Alt+C"
      },
      "description": "Toggle font color between inherit and white."
    }
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Faster Better and More Focused Reading",
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "manifest_version": 3,
  "name": "Faster Reading - Focused",
  "permissions": [
    "webNavigation",
    "storage"
  ],
  "version": "1.3.0"
}