ADHD Reader

Helping neurodiverse population to read faster on websites

What is ADHD Reader?

ADHD Reader is a Chrome extension developed by https://lehtuska.com, and its main feature is "Helping neurodiverse population to read faster on websites".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download ADHD Reader Extension CRX File

Download ADHD Reader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        ADHD Reader is a chrome extension that helps you read faster by highlighting beginning of every word on the websites.

CHANGELOG:
- [2023-09-18] Error handling optimization
- [2023-09-18] Performance enhance for infinite scroll sites
- [2023-09-18] Performance optimization for longread sites
- [2023-08-04] Add bug report link
- [2023-08-04] Fix performance issues
- [2023-04-12] Feature for keeping ADHD Reader always active
- [2023-04-12] Support for SPAs (page change inside website)
- [2023-04-12] Support for infinite scroll pages
- [2023-04-12] Fixed for Refresh (remembers if activated)                    

Extension Basic Information

Name ADHD Reader ADHD Reader
ID gcbchiambcokahmamemkoadlanaealmf
Official URL https://chromewebstore.google.com/detail/adhd-reader/gcbchiambcokahmamemkoadlanaealmf
Description Helping neurodiverse population to read faster on websites
File Size 27.5 KB
Installation Count 10,000
Current Version 0.0.4
Last Updated 2023-09-19
Publish Date 2022-09-17
Rating 3.46/5 Total 26 Ratings
Developer https://lehtuska.com
Email [email protected]
Payment Type free
Extension Website https://adhd-reader.lehtuska.com
Supported Languages en
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": [
                ""
            ]
        }
    ]
}