Examine source code of Speed Reader for Microsoft Edge™

Inspect and view changes in Speed Reader for Microsoft Edge™ source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Speed Reader for Microsoft Edgeâ„¢",
  "description": "unlock your super speed reading powers for free",
  "version": "3.0.0.1",
  "manifest_version": 3,
  "icons": {
    "16": "./icons/icon16.png",
    "24": "./icons/icon24.png",
    "32": "./icons/icon32.png",
    "48": "./icons/icon48.png",
    "64": "./icons/icon64.png",
    "128": "./icons/icon128.png",
    "256": "./icons/icon256.png",
    "512": "./icons/icon512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "all_frames": true,
      "css": [
        "jetzt.css"
      ],
      "js": [
        "modules/preamble.js",
        "modules/helpers.js",
        "modules/config.js",
        "modules/themes.js",
        "modules/parse.js",
        "modules/exec.js",
        "modules/view.js",
        "modules/select.js",
        "modules/control.js",
        "modules/init.js",
        "chrome-config.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ]
    }
  ],
  "action": {
    "default_icons": {
      "16": "./icons/icon16.png",
      "24": "./icons/icon24.png",
      "32": "./icons/icon32.png",
      "48": "./icons/icon48.png",
      "64": "./icons/icon64.png",
      "128": "./icons/icon128.png",
      "256": "./icons/icon256.png",
      "512": "./icons/icon512.png"
    },
    "default_title": "speed reader"
  },
  "options_page": "options/index.html",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "scripting",
    "activeTab",
    "fontSettings",
    "tabs",
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}