Speed Reading

Speed Reading

Chrome Extension for Speed Reading

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Speed Reading",
  "short_name": "Speed Reading",
  "description": "Chrome Extension for Speed Reading",
  "version": "0.1",
  "icons": {
    "16": "./src/assets/icon-16x16.png",
    "128": "./src/assets/icon.png"
  },
  "browser_action": {
    "default_icon": {
      "128": "./src/assets/icon.png"
    },
    "default_popup": "./src/popup/public/index.html?default_popup"
  },
  "background": {
    "scripts": [
      "src/background/index.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "./src/content/index.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab"
  ],
  "manifest_version": 2,
  "web_accessible_resources": [
    "src/popup/public/index.html"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.gstatic.com https://apis.google.com https://www.google-analytics.com/analytics.js; object-src 'self'",
  "incognito": "split"
}