Examine source code of ADHD Reader

Inspect and view changes in ADHD Reader 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ADHD Reader",
  "description": "Helping neurodiverse population to read faster on websites",
  "version": "0.0.4",
  "manifest_version": 3,
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "declarativeContent"
  ],
  "action": {
    "default_title": "Click to activate",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/adhd-reader-icon-16-disabled.png",
      "32": "/images/adhd-reader-icon-32-disabled.png",
      "48": "/images/adhd-reader-icon-48-disabled.png",
      "128": "/images/adhd-reader-icon-128-disabled.png"
    }
  },
  "icons": {
    "16": "/images/adhd-reader-icon-16.png",
    "32": "/images/adhd-reader-icon-32.png",
    "48": "/images/adhd-reader-icon-48.png",
    "128": "/images/adhd-reader-icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "myscript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}