Spritz

Spritz

Read your favorite web content twice as fast with far greater comprehension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Spritz",
  "description": "Read your favorite web content twice as fast with far greater comprehension.",
  "version": "0.1.2",
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "logo48.png",
    "default_title": "Start Spritz"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://*.firebaseio.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/content.js"
      ]
    }
  ]
}