Currikula's Speed Reader

Currikula's Speed Reader

This extension is designed to assist in reading webpages and content quickly and efficiently.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Currikula's Speed Reader",
  "short_name": "Speed Reader",
  "description": "This extension is designed to assist in reading webpages and content quickly and efficiently.",
  "version": "1.2",
  "browser_action": {
    "default_icon": "images/srl_128.png",
    "default_popup": "html/settings.html",
    "default_title": "Click here to read quickly"
  },
  "icons": {
    "16": "images/srl_16.png",
    "48": "images/srl_48.png",
    "128": "images/srl_128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/iframe.css"
      ],
      "all_frames": true,
      "js": [
        "thirdparty/jquery-3.2.1.min.js",
        "js/speedreader-content.js",
        "js/summaryGenerator.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/messages.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "html/popup.html",
    "css/iframe.css",
    "thirdparty/jquery-3.2.1.min.js",
    "images/restart.svg",
    "images/play-solo.svg",
    "images/pause.svg",
    "js/speedreader-content.js",
    "images/back_icon.svg",
    "images/settings-icon.svg",
    "js/summaryGenerator.js"
  ]
}